Skip to content

Commit 8e099dd

Browse files
authored
Avoid overwriting auto-reloaded attributes with None (#944)
1 parent 8d80596 commit 8e099dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plexapi/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ def __getattribute__(self, attr):
480480
objname = "%s '%s'" % (clsname, title) if title else clsname
481481
log.debug("Reloading %s for attr '%s'", objname, attr)
482482
# Reload and return the value
483-
self._reload()
483+
self._reload(_overwriteNone=False)
484484
return super(PlexPartialObject, self).__getattribute__(attr)
485485

486486
def analyze(self):

0 commit comments

Comments
 (0)