Jellyfin: Remove redudent keys call
Signed-off-by: Luigi311 <git@luigi311.com>pull/140/head
parent
cc706938ce
commit
c6b026a82d
|
|
@ -1,4 +1,4 @@
|
|||
.env
|
||||
**.env
|
||||
*.prof
|
||||
|
||||
# Byte-compiled / optimized / DLL files
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue