aboutsummaryrefslogtreecommitdiffstats
path: root/apps/workflowengine/lib
diff options
context:
space:
mode:
authorszaimen <szaimen@e.mail.de>2021-05-20 12:13:04 +0200
committerszaimen <szaimen@e.mail.de>2021-05-20 12:13:04 +0200
commit35d978c2fca0b4ae7961e44a3a9e1a4f77fad6dc (patch)
tree9ab67411941c1ae6ac456e0ec879f1e1852b40fa /apps/workflowengine/lib
parent7ffee26aa8768736593c77dcb12d17978a6e06b2 (diff)
downloadnextcloud-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.php2
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;