From b9b88aa666ba8420311b6f6f24b42aadd03eed04 Mon Sep 17 00:00:00 2001
From: Joas Schilling <coding@schilljs.com>
Date: Thu, 10 Aug 2017 12:35:33 +0200
Subject: [PATCH] Don't lock in the appdata_ directory

Signed-off-by: Joas Schilling <coding@schilljs.com>
---
 lib/private/Files/View.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/private/Files/View.php b/lib/private/Files/View.php
index 3fe6d43ca31..7fee0883a25 100644
--- a/lib/private/Files/View.php
+++ b/lib/private/Files/View.php
@@ -2057,7 +2057,7 @@ class View {
 			return ($pathSegments[2] === 'files') && (count($pathSegments) > 3);
 		}
 
-		return true;
+		return strpos($path, '/appdata_') !== 0;
 	}
 
 	/**
-- 
GitLab