mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Revert incorrect modification
Only use is for None, nothing else. "is" is not "=="
This commit is contained in:
parent
fae15583fa
commit
b2d3b702d1
1 changed files with 1 additions and 1 deletions
|
@ -295,7 +295,7 @@ class UserClient(threading.Thread):
|
|||
elif self.getToken():
|
||||
result = self.loadCurrUser()
|
||||
|
||||
if result is False:
|
||||
if result == False:
|
||||
pass
|
||||
else:
|
||||
log("Current user: %s" % self.currUser, 1)
|
||||
|
|
Loading…
Reference in a new issue