We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b290a6d + d9f73d8 commit e9b6b6cCopy full SHA for e9b6b6c
1 file changed
apps/files_sharing/lib/Cache.php
@@ -196,4 +196,12 @@ public function getQueryFilterForStorage(): ISearchOperator {
196
]
197
);
198
}
199
+
200
+ public function getCacheEntryFromSearchResult(ICacheEntry $rawEntry): ?ICacheEntry {
201
+ if ($rawEntry->getStorageId() === $this->getNumericStorageId()) {
202
+ return parent::getCacheEntryFromSearchResult($rawEntry);
203
+ } else {
204
+ return null;
205
+ }
206
207
0 commit comments