mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
FIX OSCAR Login: User can not access data after upgrade to 1.5.2
This commit is contained in:
parent
c53c22bc90
commit
2cac1da0a3
@ -1151,16 +1151,8 @@ void Scan()
|
|||||||
|
|
||||||
// validate user name in profile.
|
// validate user name in profile.
|
||||||
QString dbname = prof->user->userName();
|
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();
|
QString fname = QFileInfo(fi).fileName();
|
||||||
if (fname != dbname) {
|
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);
|
prof->user->setUserName(fname);
|
||||||
QString message = QString("%1 %2 %3 %4").arg("Changing Profile Name").arg(dbname).arg("==>").arg(fname);
|
QString message = QString("%1 %2 %3 %4").arg("Changing Profile Name").arg(dbname).arg("==>").arg(fname);
|
||||||
qDebug() << message;
|
qDebug() << message;
|
||||||
|
Loading…
Reference in New Issue
Block a user