mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 10:37:56 +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() {
|
QString accountFileDir() {
|
||||||
|
#if defined(Q_OS_ANDROID)
|
||||||
|
return QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/../files";
|
||||||
|
#else
|
||||||
return QStandardPaths::writableLocation(QStandardPaths::AppDataLocation);
|
return QStandardPaths::writableLocation(QStandardPaths::AppDataLocation);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
QString accountFilePath() {
|
QString accountFilePath() {
|
||||||
|
|
Loading…
Reference in a new issue