We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 088f283 commit 1044c91Copy full SHA for 1044c91
src/JsonApiDotNetCore/Services/QueryAccessor.cs
@@ -63,7 +63,7 @@ public bool TryGetValue<T>(string key, out T value)
63
64
private string GetFilterValue(string key) => _jsonApiContext.QuerySet
65
.Filters
66
- .FirstOrDefault(f => f.Key == key)
+ .FirstOrDefault(f => string.Equals(f.Key, key, StringComparison.OrdinalIgnoreCase))
67
?.Value;
68
}
69
0 commit comments