From dadccccbc5070d17feadef774eb1ec8f002c492e Mon Sep 17 00:00:00 2001 From: Yannik Schmidt Date: Mon, 19 Feb 2024 16:47:52 +0100 Subject: [PATCH] fix: s-typo --- server/interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/interface.py b/server/interface.py index b04b319..053cf95 100755 --- a/server/interface.py +++ b/server/interface.py @@ -167,7 +167,7 @@ def get_dispatch(): dispatch_objects_any = lines_timeout.filter(DispatchObject.method=="any").all() for d in dispatch_objects_any: - user_str = str(d.usernames, "utf-8") + user_str = str(d.username, "utf-8") user_settings = db.session.query(UserSettings).filter(UserSettings.username==user_str).first() if user_settings and user_settings.get_highest_prio_method() == method: dispatch_objects += [d]