mynttt / UpdateTool

A tool to update the IMDB ratings for Plex libraries that contain movies/series and use the IMDB agent to receive ratings
GNU General Public License v3.0
257 stars 12 forks source link

Warnings in the log #36

Closed arsaboo closed 4 years ago

arsaboo commented 4 years ago

I have a lot of these warnings:

[WARN ] - 2020-09-03 21:43:24 @ ImdbDatabaseSupport.updateNewAgentMetadataMapping: No external metadata provider id associated with this guid plex://movie/5d776834999c64001ec2f3c6 (MOVIE_NAME). This item will not be processed any further.

When I look at the movie in Plex, I can see an IMDB rating. Is there anything that I should do about the warning?

mynttt commented 4 years ago

For these mappings to work with the Plex beta it is required to do a full metadata refresh as mentioned here. Otherwise the mapped data does not exist yet and causes these warnings. If you're not using at least beta 1.20.1 UpdateTool won't work with the new movie agent.

Otherwise you can try this query to confirm that the mapping exists or not exists.

SELECT t.tag FROM taggings tg LEFT JOIN tags t ON tg.tag_id = t.id AND t.tag_type = 314 WHERE tg.metadata_item_id = (SELECT id FROM metadata_items WHERE guid = 'plex://movie/5d776834999c64001ec2f3c6') AND t.tag NOT NULL