From 93093ee2f2720dfb1e957c3bc1ad8b6277041d93 Mon Sep 17 00:00:00 2001 From: Moe Fwacky Date: Sun, 29 Jan 2023 23:41:53 -0800 Subject: [PATCH] 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. --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 9b2ccb5..94b9b35 100644 --- a/setup.py +++ b/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)