apps/files_external: Fix typos in comments (found and fixed by codespell)
Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
parent
217d9e8e95
commit
524b374f02
|
@ -497,7 +497,7 @@ OCA.External.StatusManager.Utils = {
|
||||||
if (folder instanceof $) {
|
if (folder instanceof $) {
|
||||||
trFolder = folder;
|
trFolder = folder;
|
||||||
} else {
|
} else {
|
||||||
// cant use here FileList.findFileEl(OCA.External.StatusManager.Utils.jqSelEscape(folder)); return incorrect instance of filelist
|
// can't use here FileList.findFileEl(OCA.External.StatusManager.Utils.jqSelEscape(folder)); return incorrect instance of filelist
|
||||||
trFolder = $('#fileList tr[data-file=\"' + OCA.External.StatusManager.Utils.jqSelEscape(folder) + '\"]');
|
trFolder = $('#fileList tr[data-file=\"' + OCA.External.StatusManager.Utils.jqSelEscape(folder) + '\"]');
|
||||||
}
|
}
|
||||||
trFolder.removeClass('externalErroredRow').removeClass('externalDisabledRow');
|
trFolder.removeClass('externalErroredRow').removeClass('externalDisabledRow');
|
||||||
|
|
|
@ -72,7 +72,7 @@ class GlobalStoragesService extends StoragesService {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Triggers signal_create_mount or signal_delete_mount to
|
* Triggers signal_create_mount or signal_delete_mount to
|
||||||
* accomodate for additions/deletions in applicableUsers
|
* accommodate for additions/deletions in applicableUsers
|
||||||
* and applicableGroups fields.
|
* and applicableGroups fields.
|
||||||
*
|
*
|
||||||
* @param StorageConfig $oldStorage old storage config
|
* @param StorageConfig $oldStorage old storage config
|
||||||
|
|
|
@ -188,7 +188,7 @@ abstract class LegacyStoragesService {
|
||||||
$storagesWithConfigHash[$configId] = $currentStorage;
|
$storagesWithConfigHash[$configId] = $currentStorage;
|
||||||
}
|
}
|
||||||
} catch (\UnexpectedValueException $e) {
|
} catch (\UnexpectedValueException $e) {
|
||||||
// dont die if a storage backend doesn't exist
|
// don't die if a storage backend doesn't exist
|
||||||
\OCP\Util::writeLog(
|
\OCP\Util::writeLog(
|
||||||
'files_external',
|
'files_external',
|
||||||
'Could not load storage: "' . $e->getMessage() . '"',
|
'Could not load storage: "' . $e->getMessage() . '"',
|
||||||
|
|
|
@ -96,7 +96,7 @@ abstract class StoragesService {
|
||||||
$config->setId((int)$mount['mount_id']);
|
$config->setId((int)$mount['mount_id']);
|
||||||
return $config;
|
return $config;
|
||||||
} catch (\UnexpectedValueException $e) {
|
} catch (\UnexpectedValueException $e) {
|
||||||
// dont die if a storage backend doesn't exist
|
// don't die if a storage backend doesn't exist
|
||||||
\OCP\Util::writeLog(
|
\OCP\Util::writeLog(
|
||||||
'files_external',
|
'files_external',
|
||||||
'Could not load storage: "' . $e->getMessage() . '"',
|
'Could not load storage: "' . $e->getMessage() . '"',
|
||||||
|
@ -352,7 +352,7 @@ abstract class StoragesService {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Triggers signal_create_mount or signal_delete_mount to
|
* Triggers signal_create_mount or signal_delete_mount to
|
||||||
* accomodate for additions/deletions in applicableUsers
|
* accommodate for additions/deletions in applicableUsers
|
||||||
* and applicableGroups fields.
|
* and applicableGroups fields.
|
||||||
*
|
*
|
||||||
* @param StorageConfig $oldStorage old storage data
|
* @param StorageConfig $oldStorage old storage data
|
||||||
|
|
|
@ -82,7 +82,7 @@ class UserStoragesService extends StoragesService {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Triggers signal_create_mount or signal_delete_mount to
|
* Triggers signal_create_mount or signal_delete_mount to
|
||||||
* accomodate for additions/deletions in applicableUsers
|
* accommodate for additions/deletions in applicableUsers
|
||||||
* and applicableGroups fields.
|
* and applicableGroups fields.
|
||||||
*
|
*
|
||||||
* @param StorageConfig $oldStorage old storage data
|
* @param StorageConfig $oldStorage old storage data
|
||||||
|
|
Loading…
Reference in New Issue