1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-16 02:54:33 +02:00

Default to LocalConfigStorage for (new) accounts without CS.

This commit is contained in:
Teo Mrnjavac
2013-07-01 11:26:03 +02:00
parent 2cd1736203
commit b08cc64a88

View File

@@ -420,7 +420,8 @@ AccountManager::configStorageForAccount( const QString& accountId )
if ( cs->accountIds().contains( accountId ) )
return cs;
}
return 0;
tLog() << "Warning: defaulting to LocalConfigStorage for account" << accountId;
return localConfigStorage();
}