[8] update no items found error

pull/1657/head
meisnate12 1 year ago
parent 5fd4a5af8e
commit 492f9be406

@ -1 +1 @@
1.19.1-develop7
1.19.1-develop8

@ -666,7 +666,7 @@ dynamic_collections:
- Tiger Aspect Productions
TMS Entertainment:
- Tokyo Movie Shinsha
Toei Animation
Toei Animation:
- Toei
TriStar Pictures:
- TriStar

@ -716,8 +716,10 @@ addons:
- Tiger Aspect Productions
TMS Entertainment:
- Tokyo Movie Shinsha
Toei Animation:
- Toei
TriStar Pictures:
- TriStar
- TriStar
Universal Pictures:
- Universal
- Universal Animation Studios

@ -10,28 +10,28 @@ Supported Library Types: Movie
## Collections Section 000
| Collection | Key | Description |
|:---------------------------------------------------|:-------------------|:-----------------------------------------------------------------------------|
| `Seasonal Collections` | `separator` | [Separator Collection](../separators) to denote the Section of Collections. |
| `🎊 New Year's Day Movies` | `years` | Collection of Movies related to New Year's Day. |
| `💘 Valentine's Day Movies` | `valentine` | Collection of Movies related to Valentine's Day. |
| `☘ St. Patrick's Day Movies` | `patrick` | Collection of Movies related to St. Patrick's Day. |
| `🐰 Easter Movies` | `easter` | Collection of Movies related to Easter. |
| `🤱 Mother's Day Movies` | `mother` | Collection of Movies related to Mother's Day. |
| `🪖 Memorial Day Movies` | `memorial` | Collection of Movies related to Memorial Day. |
| `👨 Father's Day Movies` | `father` | Collection of Movies related to Father's Day. |
| `🎆 Independence Day Movies` | `independence` | Collection of Movies related to Independence Day. |
| `⚒ Labor Day Movies` | `labor` | Collection of Movies related to Labor Day. |
| `🎃 Halloween Movies` | `halloween` | Collection of Movies related to Halloween. |
| `🎖 Veteran's Day Movies` | `veteran` | Collection of Movies related to Veteran's Day. |
| `🦃 Thanksgiving Movies` | `thanksgiving` | Collection of Movies related to Thanksgiving. |
| `🎅 Christmas Movies` | `christmas` | Collection of Movies related to Christmas. |
| `🌊🌺 Asian American Pacific Islander Movies` | `aapi` | Collection of Movies related to Asian American Pacific Islander Month |
| `♿ Disability Month Movies` | `disabilities` | Collection of Movies related to Disability Month |
| `✊ 🏿 Black History Month Movies` | `black_history` | Collection of Movies related to Black History Month |
| `🏳️‍🌈 LGBTQ Month Movies` | `lgbtq` | Collection of Movies related to LGBTQ Month |
| `🪅 National Hispanic Heritage Movies` | `latinx` | Collection of Movies related to National Hispanic Heritage Month |
| `🚺 Women's History Month Movies` | `women` | Collection of Movies related to Women's History Month |
| Collection | Key | Description |
|:----------------------------------------------|:----------------|:----------------------------------------------------------------------------|
| `Seasonal Collections` | `separator` | [Separator Collection](../separators) to denote the Section of Collections. |
| `🎊 New Year's Day Movies` | `years` | Collection of Movies related to New Year's Day. |
| `💘 Valentine's Day Movies` | `valentine` | Collection of Movies related to Valentine's Day. |
| `☘ St. Patrick's Day Movies` | `patrick` | Collection of Movies related to St. Patrick's Day. |
| `🐰 Easter Movies` | `easter` | Collection of Movies related to Easter. |
| `🤱 Mother's Day Movies` | `mother` | Collection of Movies related to Mother's Day. |
| `🪖 Memorial Day Movies` | `memorial` | Collection of Movies related to Memorial Day. |
| `👨 Father's Day Movies` | `father` | Collection of Movies related to Father's Day. |
| `🎆 Independence Day Movies` | `independence` | Collection of Movies related to Independence Day. |
| `⚒ Labor Day Movies` | `labor` | Collection of Movies related to Labor Day. |
| `🎃 Halloween Movies` | `halloween` | Collection of Movies related to Halloween. |
| `🎖 Veteran's Day Movies` | `veteran` | Collection of Movies related to Veteran's Day. |
| `🦃 Thanksgiving Movies` | `thanksgiving` | Collection of Movies related to Thanksgiving. |
| `🎅 Christmas Movies` | `christmas` | Collection of Movies related to Christmas. |
| `🌊🌺 Asian American Pacific Islander Movies` | `aapi` | Collection of Movies related to Asian American Pacific Islander Month |
| `♿ Disability Month Movies` | `disabilities` | Collection of Movies related to Disability Month |
| `✊ 🏿 Black History Month Movies` | `black_history` | Collection of Movies related to Black History Month |
| `🏳️‍🌈 LGBTQ Month Movies` | `lgbtq` | Collection of Movies related to LGBTQ Month |
| `🪅 National Hispanic Heritage Movies` | `latinx` | Collection of Movies related to National Hispanic Heritage Month |
| `🚺 Women's History Month Movies` | `women` | Collection of Movies related to Women's History Month |
## Config

@ -1118,9 +1118,10 @@ class CollectionBuilder:
self.obj = None
if self.smart:
check_url = self.smart_url if self.smart_url else self.smart_label_url
if self.obj and check_url != self.library.smart_filter(self.obj):
self.library.update_smart_collection(self.obj, check_url)
logger.info(f"Detail: Smart Collection updated to {check_url}")
if self.obj:
if check_url != self.library.smart_filter(self.obj):
self.library.update_smart_collection(self.obj, check_url)
logger.info(f"Detail: Smart Collection updated to {check_url}")
self.beginning_count = len(self.library.fetchItems(check_url))
if self.obj:
self.exists = True

Loading…
Cancel
Save