From 6dd46a5aa70288117b1251832158add22d01623c Mon Sep 17 00:00:00 2001 From: Hay1tsme Date: Thu, 11 Jan 2024 12:09:19 -0500 Subject: [PATCH] fix default config typo --- core/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/config.py b/core/config.py index 8e0e79d..ee99df7 100644 --- a/core/config.py +++ b/core/config.py @@ -275,7 +275,7 @@ class BillingConfig: @property def standalone(self) -> bool: return CoreConfig.get_config_field( - self.__config, "core", "billing", "standalone", default=False + self.__config, "core", "billing", "standalone", default=True ) @property