StateFileConfig: use GetAppCacheDir() instead of GetUserCacheDir()

This commit is contained in:
Max Kellermann 2022-11-28 13:54:03 +01:00
parent 06514aec63
commit cfd4d5b13e

View File

@ -32,7 +32,7 @@ StateFileConfig::StateFileConfig(const ConfigData &config)
{ {
#ifdef ANDROID #ifdef ANDROID
if (path.IsNull()) { if (path.IsNull()) {
const auto cache_dir = GetUserCacheDir(); const auto cache_dir = GetAppCacheDir();
if (cache_dir.IsNull()) if (cache_dir.IsNull())
return; return;