From 362daf94c185ebc80e25ac0cc6ac0ab6ba945273 Mon Sep 17 00:00:00 2001 From: Kumi Date: Tue, 25 Jun 2024 22:01:58 +0200 Subject: [PATCH] fix(auth): remove unnecessary key deletion Removed redundant key deletion step to streamline the login process. The key deletion was causing unnecessary overhead and potential issues during user login. This change improves the efficiency and reliability of user authentication. --- auth.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/auth.php b/auth.php index 8563cbf..b82c2d7 100644 --- a/auth.php +++ b/auth.php @@ -169,8 +169,6 @@ class auth_plugin_jwt extends auth_plugin_base { } } - $this->jwtmanager->delete_keys($key->userid); - $user = get_complete_user_data('id', $key->userid); complete_user_login($user);