From 3c1caede1b913a97bfdd5e02aa85c12683a6839c Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Tue, 15 Oct 2024 19:51:50 +0530 Subject: [PATCH 1/2] skip appdata folder --- lib/AppInfo/Application.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/AppInfo/Application.php b/lib/AppInfo/Application.php index a6f4e9c6..ae455434 100644 --- a/lib/AppInfo/Application.php +++ b/lib/AppInfo/Application.php @@ -89,7 +89,9 @@ class Application extends App implements IBootstrap { * @return StorageWrapper|IStorage */ public function addStorageWrapperCallback($mountPoint, IStorage $storage) { - if (!\OC::$CLI && $mountPoint !== '/') { + $instanceId = \OC::$server->getConfig()->getSystemValue('instanceid', ''); + $appdataFolder = 'appdata_' . $instanceId; + if (!\OC::$CLI && $mountPoint !== '/' && strpos($mountPoint, '/' . $appdataFolder) !== 0) { return new StorageWrapper([ 'storage' => $storage, 'mountPoint' => $mountPoint, -- GitLab From e198e5e1845bb3f29a1a08b8dd8a6733265ad614 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Thu, 17 Oct 2024 19:27:10 +0530 Subject: [PATCH 2/2] version 8.0.2 --- appinfo/info.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appinfo/info.xml b/appinfo/info.xml index e32120fc..90509703 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -10,7 +10,7 @@ - 9.0.0 + 8.0.2 agpl Murena SAS EcloudAccounts -- GitLab