aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2024-07-29 12:15:18 +0200
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2024-09-05 04:18:37 +0200
commit35f16a3d8a95530b89cb43e4275257eb9b8e64fe (patch)
tree491819f981dbc8672627a1a1087565d41e1c7d9c /apps
parent9108d54bda7b9901985300ce8f3334234434b1be (diff)
downloadnextcloud-server-35f16a3d8a95530b89cb43e4275257eb9b8e64fe.tar.gz
nextcloud-server-35f16a3d8a95530b89cb43e4275257eb9b8e64fe.zip
fix: Set status tooltip to status message when saving an storage
When a storage is saved the status check can fail even if saving the storage succeeds. In those cases further details are provided in the status message of the storage, which is now set as the tooltip, similarly to how it is done when rechecking the storage. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/files_external/js/settings.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js
index 1c27642c6a3..92b14e9454d 100644
--- a/apps/files_external/js/settings.js
+++ b/apps/files_external/js/settings.js
@@ -1266,7 +1266,7 @@ MountConfigListView.prototype = _.extend({
if (concurrentTimer === undefined
|| $tr.data('save-timer') === concurrentTimer
) {
- self.updateStatus($tr, result.status);
+ self.updateStatus($tr, result.status, result.statusMessage);
$tr.data('id', result.id);
if (_.isFunction(callback)) {