From de99c0c7e7aabb7238bd15eaabc43d6c8f34c778 Mon Sep 17 00:00:00 2001 From: Mario Enrico Ragucci Date: Sun, 21 Apr 2013 00:46:37 +0200 Subject: [PATCH] Silently ignore "installed = true" string in JSON string returned by status.php --- src/mirall/owncloudinfo.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/mirall/owncloudinfo.cpp b/src/mirall/owncloudinfo.cpp index 2aab7bae85..24ff34c952 100644 --- a/src/mirall/owncloudinfo.cpp +++ b/src/mirall/owncloudinfo.cpp @@ -416,7 +416,9 @@ void ownCloudInfo::slotReplyFinished() } else if( key == QLatin1String( "edition") ) { // get version out edition = val; - } else { + } else if(key == QLatin1String("installed")) { + // Silently ignoring "installed = true" information + } else { qDebug() << "Unknown info from ownCloud status.php: "<< key << "=" << val; } }