From: Adam Dullage Date: Tue, 17 Sep 2024 10:55:00 +0000 (+0100) Subject: Update default quick access limit to 4 X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=47de882ce7820480759cdda555e1753bd58b60e4;p=flatnotes.git Update default quick access limit to 4 --- diff --git a/server/global_config.py b/server/global_config.py index 897a09a..35b8a6a 100644 --- a/server/global_config.py +++ b/server/global_config.py @@ -88,7 +88,7 @@ class GlobalConfig: def _quick_access_limit(self): key = "FLATNOTES_QUICK_ACCESS_LIMIT" - return get_env(key, mandatory=False, default=5, cast_int=True) + return get_env(key, mandatory=False, default=4, cast_int=True) def _load_path_prefix(self): key = "FLATNOTES_PATH_PREFIX"