Jellyfin: Remove redudent keys call

Signed-off-by: Luigi311 <git@luigi311.com>
This commit is contained in:
Luigi311
2024-01-16 03:22:08 -07:00
parent cc706938ce
commit c6b026a82d
2 changed files with 2 additions and 2 deletions

View File

@@ -766,7 +766,7 @@ class Jellyfin:
user_other = search_mapping(user_mapping, user)
user_id = None
for key in self.users.keys():
for key in self.users:
if user.lower() == key.lower():
user_id = self.users[key]
user_name = key