fixed bug: unable to setup SQLite storage
[quassel.git] / src / core / sqlitestorage.cpp
index 1548085..3c61f98 100644 (file)
@@ -731,7 +731,7 @@ bool SqliteStorage::init(const QVariantMap &settings) {
     return false;
 
   if(!checkMigratedQuery.first())
-    return false;
+    return true;               // table is empty -> no work to be done
 
   QString passType = checkMigratedQuery.value(0).toString().toLower();
   if(passType == "text")