aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar jan Iversen <jan@casacondor.com>2019-12-28 16:59:40 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-12-28 08:36:55 -0800
commite80c27a2bd39ba4b34ad2c90c34251e3967a4e63 (patch)
tree7a8179fa1740831490bdafe6277b81eb033039cf
parent07ad455ea24086766f2b6e61176377a424e6b044 (diff)
downloadsubsurface-e80c27a2bd39ba4b34ad2c90c34251e3967a4e63.tar.gz
mobile-widgets/qml: correct missing parm in saveCredentials() call
Add missing empty pin ("") in saveCredentials() call. Signed-off-by: Jan Iversen <jan@casacondor.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--mobile-widgets/qml/CloudCredentials.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/CloudCredentials.qml b/mobile-widgets/qml/CloudCredentials.qml
index cbf3bac46..12f8a53d1 100644
--- a/mobile-widgets/qml/CloudCredentials.qml
+++ b/mobile-widgets/qml/CloudCredentials.qml
@@ -141,7 +141,7 @@ Item {
manager.setGitLocalOnly(true)
PrefCloudStorage.cloud_auto_sync = false
prefs.credentialStatus = CloudStatus.CS_NOCLOUD
- manager.saveCloudCredentials("", "")
+ manager.saveCloudCredentials("", "", "")
manager.openNoCloudRepo()
}
}