make sure that we really catch the files folder only
This commit is contained in:
parent
2ee14c4734
commit
a280859bf8
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue