set mountid for personal external storage mounts

Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
Robin Appelman 2020-12-02 14:25:48 +01:00 committed by backportbot[bot]
parent 32b7a0e13f
commit 3b9a432136
2 changed files with 5 additions and 3 deletions

View File

@ -167,7 +167,8 @@ class ConfigAdapter implements IMountProvider {
'/' . $user->getUID() . '/files' . $storageConfig->getMountPoint(),
null,
$loader,
$storageConfig->getMountOptions()
$storageConfig->getMountOptions(),
$storageConfig->getId()
);
} else {
return new ExternalMountPoint(

View File

@ -55,9 +55,10 @@ class PersonalMount extends ExternalMountPoint implements MoveableMount {
$mountpoint,
$arguments = null,
$loader = null,
$mountOptions = null
$mountOptions = null,
$mountId = null
) {
parent::__construct($storage, $mountpoint, $arguments, $loader, $mountOptions);
parent::__construct($storage, $mountpoint, $arguments, $loader, $mountOptions, $mountId);
$this->storagesService = $storagesService;
$this->numericStorageId = $storageId;
}