mirror of
https://github.com/lubosz/overte.git
synced 2025-04-10 15:57:39 +02:00
Fix account info persistence after login
This commit is contained in:
parent
0afdb674dc
commit
0068e5dc0f
1 changed files with 4 additions and 0 deletions
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue