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

Conversation

trancefam
Copy link

I wanted to use this to build a channel for a "smart collection" that contained the term "Animation"; however it failed because .search() includes results when it isn't an exact match, so I also got results back for "Sony Animation", "Disney Animation", etc. collections, which caused the script to fail. These edits fix this, and require an exact match for the supplied collection name.

I wanted to use this to build a channel for a "smart collection" that contained the term "Animation"; however it failed because .search() includes results when it isn't an exact match, so I also got results back for "Sony Animation", "Disney Animation", etc. collections, which caused the script to fail. These edits fix this, and require an exact match for the supplied collection name.
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:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants