Browse Source

Fix to Filter bug

Kenric Nugteren 7 months ago
parent
commit
f24b97c506
1 changed files with 1 additions and 1 deletions
  1. 1 1
      inabox.database.sqlite/SQLiteProvider.cs

+ 1 - 1
inabox.database.sqlite/SQLiteProvider.cs

@@ -1825,7 +1825,7 @@ public class SQLiteProvider : IProvider
     private string GetFilterClauseNonGeneric(Type T, SQLiteCommand command, char prefix, IFilter? filter, List<Tuple<string, string, string, string>> tables,
     private string GetFilterClauseNonGeneric(Type T, SQLiteCommand command, char prefix, IFilter? filter, List<Tuple<string, string, string, string>> tables,
         Dictionary<string, string> fieldmap, List<string> columns, bool useparams)
         Dictionary<string, string> fieldmap, List<string> columns, bool useparams)
     {
     {
-        if (filter == null || filter.Property.IsNullOrWhiteSpace())
+        if (filter == null)
             return "";
             return "";
 
 
         var result = "";
         var result = "";