#Metadata: asset_directory updated

1 messages · Page 1 of 1 (latest)

keen sigil
#

Hello, anyone have any thoughts on what triggers these 5 shows to process Metadata: asset_directory updated on each run? For whatever reason this update triggers it as a new item (on_created) in plex and tautilli sends a new item notifications for it. There have been no changes in the asset directory or to the images

| Item: Ted Lasso {tvdb-383203} has an Overlay and will be updated when overlays are run | Metadata: asset_directory updated Ted Lasso Season 1's poster to [File] /config/assets/Ted Lasso {tvdb-383203}/Season01.png | | Metadata: asset_directory updated Ted Lasso Season 2's poster to [File] /config/assets/Ted Lasso {tvdb-383203}/Season02.png | | Metadata: asset_directory updated Ted Lasso Season 3's poster to [File] /config/assets/Ted Lasso {tvdb-383203}/Season03.png |

| Item Operation: True | | The Bear | Splitting | The Lord of the Rings: Th | Splitting | The Penguin | Splitting | Silo | Splitting | Ted Lasso | Splitting | Loading All Shows from Library: TV Shows | Loaded 139 Shows

old rivetBOT
#

📝 If you want to review this again, nichols89_ben:
:one: Right-click (or long press with phone) on the message that contains the log
:two: Select: Copy Message Link
:three: Use the command: /logscan <message_link> or !logscan <message_link> and paste the value copied from the previous step where you see <message_link> 📝

#

Welcome @keen sigil!

Thanks for being a Kometa Sponsor, we greatly appreciate it! Your ticket will now be diverted to <@&1097919568334311495> and <@&938443185347244033>.

Including meta.log from the beginning is a huge help. Type !logs for more information.

After attaching your log, do not forget to hit the green check boxes when prompted by our bot.

#

You can press the "Close Post" button above or type /close at any time to close this post.

old rivetBOT
#
**User Info**

Author of Linked Message: space_chef
Person who Invoked the Command: space_chef
File Name: meta.log

Table of Contents:
Page 01: User Info
Page 02: Kometa Info
Page 03: Kometa Summary Info
Page 04: Kometa Config.yml YAML Validation
Page 05: Plex Configuration - Section 1
Page 06: Plex Configuration - Section 2
Page 07: Plex Configuration - Section 3
Page 08: Plex Configuration - Section 4
Page 09: Rec 01 - ❌ [ERROR]
Page 10: Rec 02 - ❌⏰ KOMETA SCHEDULED TIME CONFLICT
Page 11: Rec 03 - ⚠️ [WARNING]
Page 12: Rec 04 - 💬 CONVERT WARNING

old rivetBOT
cursive furnace
#

kometa thinks you have new media

glad void
#

Kometa asked Plex for duplicate things, and Plex returned these five shows:

| The Bear                  | Splitting                                                    
| The Lord of the Rings: Th | Splitting                                                              
| The Penguin               | Splitting                                                              
| Silo                      | Splitting                                                              
| Ted Lasso                 | Splitting                                                              

Kometa is splitting them as requested. The code here is pretty basic:

        if self.library.split_duplicates:                      # should we split dupes?
            items = self.library.search(**{"duplicate": True}) # hey plex give me the dupes
            for item in items:                                 # loop over them and split them
                item.split()
                logger.info(f"{item.title[:25]:<25} | Splitting")

On the others:

Kometa noticed that this asset has apparently been updated, or the split created something new, so Kometa is trying to update the art from the asset. However, the show poster has overlays, so it's not updated here

| Item: Ted Lasso {tvdb-383203} has an Overlay and will be updated when overlays are run             |

Overlays aren't scheduled this run, so the show poster doesn't actually get updated.

Same situation for the seasons, but in this case they don't have assets.

| Metadata: asset_directory updated Ted Lasso Season 1's poster to [File] /config/assets/Ted Lasso {tvdb-383203}/Season01.png |
| Metadata: asset_directory updated Ted Lasso Season 2's poster to [File] /config/assets/Ted Lasso {tvdb-383203}/Season02.png |
| Metadata: asset_directory updated Ted Lasso Season 3's poster to [File] /config/assets/Ted Lasso {tvdb-383203}/Season03.png |
keen sigil