Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support building channel when multiple collections contain search term #11

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions scripts/channel_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,14 @@
if args.collection is not None:
for collection in args.collection:
found_coll = plex_server.library.section(section).search(title=collection, libtype='collection')
if found_coll and len(found_coll) == 1:
print("Matching COLLECTION items:")
for item in found_coll[0].children:
print(f"{collection} - {item.title}")
all_items.extend(found_coll[0].children)
if found_coll and len(found_coll) > 0:
for coll in found_coll:
if coll.title == collection:
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if collection in coll.title:

print("Matching COLLECTION items:")
for item in coll.children:
print(f"{collection} - {item.title}")
all_items.extend(found_coll[0].children)
break

if all_items:
answer = input("Would you like to proceed with making the channel? (Y/N) ")
Expand Down