From fbc527010ac305cb6951077d81ee68f014231a3f Mon Sep 17 00:00:00 2001 From: JonnyWong16 Date: Fri, 26 Aug 2016 18:48:09 -0700 Subject: [PATCH] Fix notifications not sending for Local user Fixes #807 --- plexpy/users.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexpy/users.py b/plexpy/users.py index d7efd4c5..5f9d0720 100644 --- a/plexpy/users.py +++ b/plexpy/users.py @@ -279,7 +279,7 @@ class Users(object): 'shared_libraries': () } - if not user_id and not user and not email: + if user_id is None and not user and not email: return default_return def get_user_details(user_id=user_id, user=user, email=email):