summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing
diff options
context:
space:
mode:
authorMichael Gapczynski <mtgap@owncloud.com>2013-01-10 22:29:47 -0500
committerMichael Gapczynski <mtgap@owncloud.com>2013-01-10 22:29:47 -0500
commit36cac7f924ad07738a3cb72fee06f21d07baad42 (patch)
tree4434026dcfeeb19a3cd9ef5fc127c6d12da8f859 /apps/files_sharing
parent4835525c469d5ac75104e92c2dfbbb049d62890c (diff)
downloadnextcloud-server-36cac7f924ad07738a3cb72fee06f21d07baad42.tar.gz
nextcloud-server-36cac7f924ad07738a3cb72fee06f21d07baad42.zip
Return NOT_FOUND in shared cache
Diffstat (limited to 'apps/files_sharing')
-rw-r--r--apps/files_sharing/lib/cache.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php
index d35a5148de2..0b187a3c3ff 100644
--- a/apps/files_sharing/lib/cache.php
+++ b/apps/files_sharing/lib/cache.php
@@ -196,7 +196,7 @@ class Shared_Cache extends Cache {
if ($cache = $this->getSourceCache($file)) {
return $cache->getStatus($this->files[$file]);
}
- return false;
+ return self::NOT_FOUND;
}
/**