Fix account info persistence after login

This commit is contained in:
Gabriel Calero 2018-03-26 14:56:05 -03:00
parent 0afdb674dc
commit 0068e5dc0f

View file

@ -106,7 +106,11 @@ void AccountManager::logout() {
}
QString accountFileDir() {
#if defined(Q_OS_ANDROID)
return QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/../files";
#else
return QStandardPaths::writableLocation(QStandardPaths::AppDataLocation);
#endif
}
QString accountFilePath() {