mobile-widgets/qml: remove use of prefs. in DiveList.qml

prefs. is only important during the signin process, so use the standard
PrefCloudStorage variable

Signed-off-by: Jan Iversen <jan@casacondor.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
jan Iversen 2019-12-28 16:13:00 +01:00 committed by Dirk Hohndel
parent 3cca6b9e9b
commit bdbaf72d27

View file

@ -30,12 +30,12 @@ Kirigami.ScrollablePage {
supportsRefreshing: true
onRefreshingChanged: {
if (refreshing) {
if (prefs.credentialStatus === CloudStatus.CS_VERIFIED) {
if (PrefCloudStorage.cloud_verification_status === CloudStatus.CS_VERIFIED) {
detailsWindow.endEditMode()
manager.saveChangesCloud(true)
refreshing = false
} else {
manager.appendTextToLog("sync with cloud storage requested, but credentialStatus is " + prefs.credentialStatus)
manager.appendTextToLog("sync with cloud storage requested, but credential status is " + PrefCloudStorage.cloud_verification_status)
manager.appendTextToLog("no syncing, turn off spinner")
refreshing = false
}