Fixed custom oeprator bug

This commit is contained in:
Biarity 2018-02-07 11:07:37 +10:00
parent e9e61b37ae
commit d3a16d7955
2 changed files with 4 additions and 4 deletions

View File

@ -47,7 +47,7 @@ namespace Sieve.Models
// Custom operator
var tokens = _filter.Split(' ');
return tokens.Length > 0 ? tokens[1] : "";
return tokens.Length > 1 ? tokens[1] : "";
}
}
@ -56,7 +56,7 @@ namespace Sieve.Models
get
{
var tokens = _filter.Split(operators, StringSplitOptions.RemoveEmptyEntries);
return tokens.Length > 0 ? tokens[1].Trim() : null;
return tokens.Length > 1 ? tokens[1].Trim() : null;
}
}

View File

@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Sieve</id>
<version>1.3.4</version>
<version>1.3.5</version>
<title>Sieve</title>
<authors>Biarity</authors>
<owners>Biarity</owners>
@ -13,7 +13,7 @@
<description>
Sieve is a simple, clean, and extensible framework for .NET Core that adds sorting, filtering, and pagination functionality out of the box. Most common use case would be for serving ASP.NET Core GET queries. Documentation available on GitHub: https://github.com/Biarity/Sieve/
</description>
<releaseNotes>Ignore syntax errors</releaseNotes>
<releaseNotes>Fixed custom oeprator bug</releaseNotes>
<copyright>Copyright 2018</copyright>
<tags>aspnetcore filter sort page paginate sieve search</tags>
<dependencies>