diff options
author | jan Iversen <jan@casacondor.com> | 2019-12-28 16:59:40 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-12-28 08:36:55 -0800 |
commit | e80c27a2bd39ba4b34ad2c90c34251e3967a4e63 (patch) | |
tree | 7a8179fa1740831490bdafe6277b81eb033039cf | |
parent | 07ad455ea24086766f2b6e61176377a424e6b044 (diff) | |
download | subsurface-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.qml | 2 |
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() } } |