From b462a2720ae3cf1d7a718e38eaf3407f250e2266 Mon Sep 17 00:00:00 2001 From: Hay1tsme Date: Wed, 14 Feb 2024 16:56:40 -0500 Subject: [PATCH] fix database config field protocol --- core/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/config.py b/core/config.py index c41418e..3d7b919 100644 --- a/core/config.py +++ b/core/config.py @@ -173,7 +173,7 @@ class DatabaseConfig: @property def protocol(self) -> str: return CoreConfig.get_config_field( - self.__config, "core", "database", "type", default="mysql" + self.__config, "core", "database", "protocol", default="mysql" ) @property