diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2013-01-10 22:29:47 -0500 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2013-01-10 22:29:47 -0500 |
commit | 36cac7f924ad07738a3cb72fee06f21d07baad42 (patch) | |
tree | 4434026dcfeeb19a3cd9ef5fc127c6d12da8f859 /apps/files_sharing | |
parent | 4835525c469d5ac75104e92c2dfbbb049d62890c (diff) | |
download | nextcloud-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.php | 2 |
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; } /** |