mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
[13] fix tv ratings
This commit is contained in:
parent
277b46ad65
commit
3db3440f5d
3 changed files with 3 additions and 3 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.17.3-develop12
|
||||
1.17.3-develop13
|
||||
|
|
|
@ -63,7 +63,7 @@ collections:
|
|||
Christmas Movies:
|
||||
imdb_list: https://www.imdb.com/list/ls000096828/
|
||||
sync_mode: sync
|
||||
visible_home: range(12/01-12-31)
|
||||
visible_home: range(12/01-12/31)
|
||||
```
|
||||
|
||||
The scheduling options are:
|
||||
|
|
|
@ -93,7 +93,7 @@ class Mdblist:
|
|||
elif tvdb_id:
|
||||
params["tv"] = tvdb_id
|
||||
params["m"] = "movie" if is_movie else "show"
|
||||
key = f"{'tvm' if is_movie else 'tvs'}{tmdb_id}"
|
||||
key = f"{'tvm' if is_movie else 'tvs'}{tvdb_id}"
|
||||
else:
|
||||
raise Failed("MdbList Error: Either IMDb ID, TVDb ID, or TMDb ID and TMDb Type Required")
|
||||
expired = None
|
||||
|
|
Loading…
Reference in a new issue