diff --git a/oscar/SleepLib/profiles.cpp b/oscar/SleepLib/profiles.cpp index 2669f567..bcf136d2 100644 --- a/oscar/SleepLib/profiles.cpp +++ b/oscar/SleepLib/profiles.cpp @@ -1151,16 +1151,8 @@ void Scan() // validate user name in profile. QString dbname = prof->user->userName(); - if (dbname.isEmpty()) { - qWarning() << "Not a Profile " << npath; - delete prof; - continue; // skip over this folder. it is not a profile. - } QString fname = QFileInfo(fi).fileName(); if (fname != dbname) { - // this condition currently causes an infinite loop - causes oscar issue. - // one solution is to avoid putting this profile in profiles MAP. - // the other solution is to update userName with its new name. prof->user->setUserName(fname); QString message = QString("%1 %2 %3 %4").arg("Changing Profile Name").arg(dbname).arg("==>").arg(fname); qDebug() << message; @@ -1178,7 +1170,7 @@ void Scan() } // Update profiles.xml for mobile version // profiles.xml is never read so it does not need to be saved. - // saveProfileList(); + // saveProfileList(); }