diff options
author | jan Iversen <jan@casacondor.com> | 2019-12-26 09:19:10 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-12-26 10:24:55 -0800 |
commit | c4952b0dcb10549cd8e5003948adb3a036ca0e23 (patch) | |
tree | c0a9523b07a2fac76027248d4358541bb8793c1b /mobile-widgets/qml/CloudCredentials.qml | |
parent | b58d403906b6b86c1ad15d98c44d67be2fd507f6 (diff) | |
download | subsurface-c4952b0dcb10549cd8e5003948adb3a036ca0e23.tar.gz |
mobile-widgets: correct switch to no-cloud mode.
saveCredentials() missed parameters
Signed-off-by: Jan Iversen <jan@casacondor.com>
Diffstat (limited to 'mobile-widgets/qml/CloudCredentials.qml')
-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 c19f06370..1b574b68a 100644 --- a/mobile-widgets/qml/CloudCredentials.qml +++ b/mobile-widgets/qml/CloudCredentials.qml @@ -144,7 +144,7 @@ Item { manager.setGitLocalOnly(true) PrefCloudStorage.cloud_auto_sync = false prefs.credentialStatus = CloudStatus.CS_NOCLOUD - manager.saveCloudCredentials() + manager.saveCloudCredentials("", "") manager.openNoCloudRepo() } } |