From 21048835267c8d2b3065d33f392cde8c7d8f2bdf Mon Sep 17 00:00:00 2001 From: Guillaume De Saint Martin Date: Tue, 26 Sep 2023 13:26:40 +0200 Subject: [PATCH] [WebInterface] fix forced_profile_url --- Services/Interfaces/web_interface/models/profiles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Services/Interfaces/web_interface/models/profiles.py b/Services/Interfaces/web_interface/models/profiles.py index 41f94a352..72d7d5a89 100644 --- a/Services/Interfaces/web_interface/models/profiles.py +++ b/Services/Interfaces/web_interface/models/profiles.py @@ -193,7 +193,7 @@ def get_forced_profile() -> profiles.Profile: authentication.Authenticator.instance().get_startup_info(), log_exceptions=False ) - if startup_info.forced_profile: + if startup_info.forced_profile_url: return get_current_profile() except community.BotError: pass