From 66a24b3f4f941413e6c94ae0c55f6e4c32ef2771 Mon Sep 17 00:00:00 2001 From: Sam Date: Wed, 13 Jul 2022 08:54:09 +0200 Subject: [PATCH] API - make DEFAULT_STATICMAP case insensitive --- fittrackee/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fittrackee/config.py b/fittrackee/config.py index 4898fb1c..2ac1a81b 100644 --- a/fittrackee/config.py +++ b/fittrackee/config.py @@ -43,7 +43,7 @@ class BaseConfig: ' contributors', ), 'DEFAULT_STATICMAP': ( - os.environ.get('DEFAULT_STATICMAP', 'False') == 'True' + os.environ.get('DEFAULT_STATICMAP', 'false').lower() == 'true' ), } TRANSLATIONS_FOLDER = os.path.join(