diff options
author | szaimen <szaimen@e.mail.de> | 2021-05-20 12:13:04 +0200 |
---|---|---|
committer | szaimen <szaimen@e.mail.de> | 2021-05-20 12:13:04 +0200 |
commit | 35d978c2fca0b4ae7961e44a3a9e1a4f77fad6dc (patch) | |
tree | 9ab67411941c1ae6ac456e0ec879f1e1852b40fa /apps/workflowengine/lib | |
parent | 7ffee26aa8768736593c77dcb12d17978a6e06b2 (diff) | |
download | nextcloud-server-35d978c2fca0b4ae7961e44a3a9e1a4f77fad6dc.tar.gz nextcloud-server-35d978c2fca0b4ae7961e44a3a9e1a4f77fad6dc.zip |
Rename External storages to External storage
Signed-off-by: szaimen <szaimen@e.mail.de>
Diffstat (limited to 'apps/workflowengine/lib')
-rw-r--r-- | apps/workflowengine/lib/Check/FileName.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/workflowengine/lib/Check/FileName.php b/apps/workflowengine/lib/Check/FileName.php index 9a564f85f63..b2442410af4 100644 --- a/apps/workflowengine/lib/Check/FileName.php +++ b/apps/workflowengine/lib/Check/FileName.php @@ -54,7 +54,7 @@ class FileName extends AbstractStringCheck implements IFileCheck { protected function getActualValue(): string { $fileName = $this->path === null ? '' : basename($this->path); if ($fileName === '' && (!$this->storage->isLocal() || $this->storage->instanceOfStorage(Local::class))) { - // Return the mountpoint name of external storages that are not mounted as user home + // Return the mountpoint name of external storage that are not mounted as user home $mountPoints = $this->mountManager->findByStorageId($this->storage->getId()); if (empty($mountPoints) || $mountPoints[0]->getMountType() !== 'external') { return $fileName; |