[11] fix imdb_watchlist

pull/1026/head
meisnate12 2 years ago
parent 5fe56abdbb
commit d79f28ce6e

@ -1,6 +1,5 @@
name: Bug Report
description: Please do not use bug reports for support issues.
title: '[Bug]: '
labels: ['status:not-yet-viewed', 'bug']
assignees: 'meisnate12'

@ -1,6 +1,5 @@
name: Wiki Request
description: A request to update or improve Plex Meta Manager's wiki
title: '[Docs]: '
labels: ['status:not-yet-viewed', 'documentation']
assignees: 'meisnate12'

@ -1,31 +0,0 @@
name: Feature Request
description: Suggest a new feature for Plex Meta Manager.
title: '[Feature]: '
labels: ['status:not-yet-viewed', 'enhancement']
assignees: 'meisnate12'
body:
- type: markdown
attributes:
value: >
Thanks for taking the time to file a feature request! Please fill out this form as completely as possible.
- type: textarea
id: problem-relation
attributes:
label: Is your feature request related to a problem? Please elaborate.
description: A clear and concise description of what the problem is.
placeholder: eg. I'm always frustrated when...
validations:
required: true
- type: textarea
id: solution
attributes:
label: Describe the solution you'd like
description: A clear and concise description of what you want to happen.
validations:
required: true
- type: textarea
id: additional-info
attributes:
label: Additional Information
description: "[optional] You may provide additional context or screenshots for us to better understand the need of the feature."

@ -1,5 +1,8 @@
blank_issues_enabled: false
contact_links:
- name: Fwature Requests
url: https://features.metamanager.wiki
about: Please use the features site to submit and vote on features.
- name: Plex Meta Manager Wiki
url: https://metamanager.wiki
about: Please check the wiki to see if your question has already been answered.

@ -1 +1 @@
1.17.3-develop10
1.17.3-develop11

@ -41,6 +41,9 @@ None of these details work with Playlists.
| `item_label` | **Description:** Appends new labels to every movie/show in the collection<br>**Values:** Comma-separated string of labels to append |
| `item_label.remove` | **Description:** Removes existing labels from every movie/show in the collection<br>**Values:** Comma-separated string of labels to remove |
| `item_label.sync` | **Description:** Matches the labels of every movie/show in the collection to the labels provided (Leave blank to remove all labels)<br>**Values:** Comma-separated string of labels to sync |
| `item_genre` | **Description:** Appends new genres to every movie/show in the collection<br>**Values:** Comma-separated string of genres to append |
| `item_genre.remove` | **Description:** Removes existing genres from every movie/show in the collection<br>**Values:** Comma-separated string of genres to remove |
| `item_genre.sync` | **Description:** Matches the genres of every movie/show in the collection to the genres provided (Leave blank to remove all genres)<br>**Values:** Comma-separated string of genres to sync |
| `non_item_remove_label` | **Description:** Matches every movie/show that has the given label and is not in the collection and removes the label<br>**Values:** Comma-separated string of labels to remove |
| `item_lock_poster` | **Description:** Locks/Unlocks the poster of every movie/show in the collection<br>**Default:** `None`<br>**Values:**<table class="clearTable"><tr><td>`true`</td><td>Lock</td></tr><tr><td>`false`</td><td>Unlock</td></tr></table> |
| `item_lock_background` | **Description:** Locks/Unlocks the background of every movie/show in the collection<br>**Default:** `None`<br>**Values:**<table class="clearTable"><tr><td>`true`</td><td>Lock</td></tr><tr><td>`false`</td><td>Unlock</td></tr></table> |

@ -72,7 +72,7 @@ class IMDb:
valid_users = []
for user in util.get_list(users):
user_id = None
if not user.startswith("ur"):
if user.startswith("ur"):
try:
user_id = int(user[2:])
except ValueError:

Loading…
Cancel
Save