mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-25 05:50:21 +00:00
[97] fix overlay limits
This commit is contained in:
parent
63fdaf3cff
commit
a44b736b17
2 changed files with 3 additions and 1 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.19.0-develop96
|
||||
1.19.0-develop97
|
||||
|
|
|
@ -416,6 +416,8 @@ class Overlays:
|
|||
added_titles = []
|
||||
if builder.found_items:
|
||||
for item in builder.found_items:
|
||||
if builder.limit and len(added_titles) >= builder.limit:
|
||||
break
|
||||
key_to_item[item.ratingKey] = item
|
||||
added_titles.append(item)
|
||||
if item.ratingKey not in properties[prop_name].keys:
|
||||
|
|
Loading…
Reference in a new issue