From b3fa75913335cc9d3ff8e8ca63624795012876bf Mon Sep 17 00:00:00 2001 From: Job Doesburg Date: Tue, 9 Apr 2024 15:09:01 +0200 Subject: [PATCH] Fix cache --- website/tosti/settings/production.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/tosti/settings/production.py b/website/tosti/settings/production.py index 7b9af02c..d2730e88 100644 --- a/website/tosti/settings/production.py +++ b/website/tosti/settings/production.py @@ -83,8 +83,8 @@ # SPOTIFY -SPOTIFY_CACHE_PATH = BASE_DIR.parent.parent / "cache" / "spotipycache" -MARIETJE_CACHE_PATH = BASE_DIR.parent.parent / "cache" / "marietjecache" +SPOTIFY_CACHE_PATH = BASE_DIR.parent / "cache" / "spotipycache" +MARIETJE_CACHE_PATH = BASE_DIR.parent / "cache" / "marietjecache" # SENTRY if os.environ.get("SENTRY_DSN"): @@ -99,7 +99,7 @@ CACHES = { "default": { "BACKEND": "django.core.cache.backends.filebased.FileBasedCache", - "LOCATION": BASE_DIR.parent.parent / "cache" / "cache", + "LOCATION": BASE_DIR.parent / "cache" / "cache", } }