mirror of
https://github.com/FakeTV/pseudo-channel.git
synced 2025-12-06 00:13:38 +00:00
Implemented Plex section.scanner fix
Made changes to account for changes to how section.scanner indicates TV series, movies and video files in the API.
This commit is contained in:
6
setup.py
6
setup.py
@@ -227,11 +227,11 @@ def ps_install():
|
||||
sys.stdout.write("\rScanning Libraries...")
|
||||
for section in sections:
|
||||
sys.stdout.write(".")
|
||||
if section.scanner == "Plex Series Scanner":
|
||||
if section.scanner == "Plex TV Series":
|
||||
showsSections.append(section.title)
|
||||
elif section.scanner == "Plex Movie Scanner":
|
||||
elif section.scanner == "Plex Movie":
|
||||
moviesSections.append(section.title)
|
||||
elif section.scanner == "Plex Video Files Scanner":
|
||||
elif section.scanner == "Plex Video Files":
|
||||
commercialsSections.append(section.title)
|
||||
print("\nSelect TV Show Libraries (separate multiple entries with a comma or enter 'all')")
|
||||
ps_showslibraries = select_libs(showsSections)
|
||||
|
||||
Reference in New Issue
Block a user