aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDavid <37280718+yeyulantu@users.noreply.github.com>2022-08-16 17:59:02 +0800
committerGitHub <noreply@github.com>2022-08-16 17:59:02 +0800
commitfe3f4afd77cb3c0199cb18b6faae5750dee63968 (patch)
tree075898bf92728ff70a46db784f150c276c42e4ed /lib
parent3e2ab35af5aa14ed77fba66b63b9d858a5607394 (diff)
downloadnextcloud-server-fe3f4afd77cb3c0199cb18b6faae5750dee63968.tar.gz
nextcloud-server-fe3f4afd77cb3c0199cb18b6faae5750dee63968.zip
fixed the cache searchBuilder negative map
Signed-off-by: David <37280718+yeyulantu@users.noreply.github.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Files/Cache/SearchBuilder.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/Cache/SearchBuilder.php b/lib/private/Files/Cache/SearchBuilder.php
index b5f548dd563..1a8c3637063 100644
--- a/lib/private/Files/Cache/SearchBuilder.php
+++ b/lib/private/Files/Cache/SearchBuilder.php
@@ -54,7 +54,7 @@ class SearchBuilder {
ISearchComparison::COMPARE_GREATER_THAN => 'lte',
ISearchComparison::COMPARE_GREATER_THAN_EQUAL => 'lt',
ISearchComparison::COMPARE_LESS_THAN => 'gte',
- ISearchComparison::COMPARE_LESS_THAN_EQUAL => 'lt',
+ ISearchComparison::COMPARE_LESS_THAN_EQUAL => 'gt',
];
public const TAG_FAVORITE = '_$!<Favorite>!$_';