Silently ignore "installed = true" string in JSON string returned by status.php

This commit is contained in:
Mario Enrico Ragucci 2013-04-21 00:46:37 +02:00
parent 5b5cd310b9
commit de99c0c7e7

View File

@ -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;
}
}