From 94b1c8b029cf366f1917c5050e25627619576780 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=AD=A3=E6=B1=B0?= Date: Fri, 23 Feb 2024 02:47:59 +0800 Subject: [PATCH] Fix the esi problem for Serenity when setting --- service/esi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/esi.py b/service/esi.py index a465f09de..35d92a56f 100644 --- a/service/esi.py +++ b/service/esi.py @@ -112,7 +112,7 @@ class Esi(EsiAccess): s = re.search(r'(?<=code=)[a-zA-Z0-9\-_]*', dlg.ssoInfoCtrl.Value.strip()) if s: # skip state verification and go directly through the auth code processing - self.handleLogin(s.group) + self.handleLogin(s.group(0)) else: pass # todo: throw error