From a280859bf888b0573e24f47b335ba3d65b9212ae Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 17 Sep 2014 10:40:41 +0200 Subject: [PATCH] make sure that we really catch the files folder only --- apps/files_encryption/lib/proxy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index 31d11338ef5..b406404a688 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -54,7 +54,7 @@ class Proxy extends \OC_FileProxy { $view = new \OC\Files\View(); // files outside of the files-folder are excluded - if(strpos($path, '/' . $uid . '/files') !== 0) { + if(strpos($path, '/' . $uid . '/files/') !== 0) { return true; } -- 2.39.5