From cfd4d5b13e1202d09ad4b0ac9f09714400d9ecd9 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 28 Nov 2022 13:54:03 +0100 Subject: [PATCH] StateFileConfig: use GetAppCacheDir() instead of GetUserCacheDir() --- src/StateFileConfig.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/StateFileConfig.cxx b/src/StateFileConfig.cxx index 453a657a4..a742e627b 100644 --- a/src/StateFileConfig.cxx +++ b/src/StateFileConfig.cxx @@ -32,7 +32,7 @@ StateFileConfig::StateFileConfig(const ConfigData &config) { #ifdef ANDROID if (path.IsNull()) { - const auto cache_dir = GetUserCacheDir(); + const auto cache_dir = GetAppCacheDir(); if (cache_dir.IsNull()) return;