From: Robin Appelman Date: Mon, 31 Aug 2020 14:38:47 +0000 (+0200) Subject: set the mount id before calling storage wrapper X-Git-Tag: v20.0.0beta3~18^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fpull%2F22517%2Fhead;p=nextcloud-server.git set the mount id before calling storage wrapper this allows the storage wrapper to use the mount id for it's own logic Signed-off-by: Robin Appelman --- diff --git a/lib/private/Files/Mount/MountPoint.php b/lib/private/Files/Mount/MountPoint.php index f9cda6fbce8..626bc32ebf2 100644 --- a/lib/private/Files/Mount/MountPoint.php +++ b/lib/private/Files/Mount/MountPoint.php @@ -102,6 +102,7 @@ class MountPoint implements IMountPoint { $mountpoint = $this->formatPath($mountpoint); $this->mountPoint = $mountpoint; + $this->mountId = $mountId; if ($storage instanceof Storage) { $this->class = get_class($storage); $this->storage = $this->loader->wrap($this, $storage); @@ -113,7 +114,6 @@ class MountPoint implements IMountPoint { $this->class = $storage; $this->arguments = $arguments; } - $this->mountId = $mountId; } /**