Skip to content
This repository was archived by the owner on May 26, 2022. It is now read-only.

Commit 486d9c9

Browse files
authored
Support missing libraries
1 parent ee02cb7 commit 486d9c9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

custom_components/plex_assistant/plex_assistant.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,5 @@ def update_libraries(self):
4040
self.media["updated"] = datetime.now()
4141

4242
def get_section_id(self, section):
43-
return self.library.search(libtype=section, limit=1)[0].librarySectionID
43+
section = self.library.search(libtype=section, limit=1)
44+
return None if not section else section[0].librarySectionID

0 commit comments

Comments
 (0)