mirror of
https://github.com/Radarr/Radarr.git
synced 2026-03-02 22:57:34 -05:00
Ghostbuster (2016) mismatch to the old movie (1984) #4654
Labels
No labels
Area: API
Area: Database
Area: Db-migration
Area: Download Clients
Area: Extras
Area: Import Lists
Area: Indexer
Area: Metadata API
Area: Notifications
Area: Organizer
Area: Parser
Area: Scanning
Area: Tooling
Area: UI
Area: Unit Tests
On Hold: MetadataAPI Blocking
On Hold: MetadataAPI Blocking
Priority: High
Priority: Low
Priority: Medium
Status: Accepted
Status: Cannot Reproduce
Status: Confirmed
Status: Help Wanted
Status: In Progress
Status: Indexer - need invite
Status: Info Needed
Status: Investigating
Status: Logs Needed
Status: Maybe One Day
Status: Needs Triage
Status: On Hold
Status: Ready for Review
Status: Unlikely
Status: Waiting for OP
Status: Won't Fix
Type: Bug
Type: Documentation
Type: Duplicate
Type: Enhancement
Type: External Bug
Type: Feature Request
Type: Regression
Type: Support
Type: Support.
conflict
lidarr-pull
no-conflict
not-pulled
readarr-pull
readarr-pull
sonarr upstream
sonarr-pull
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Radarr#4654
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Haldir31 on GitHub (Aug 13, 2020).
Describe the bug
During the import for existing movie, I have ghostbuster movie with the old version from 1984 and the new one from 2016. Folder name is formatted as "Movie Name (Year)"
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Based on the movie name and the year, both version should match with their respective year. To have a expected match, folder have to include the IMDB ID. TMDB ID is not able to override the match and use the 2016 version.
Screenshots

Platform Information (please complete the following information):
Debug Logs
2020-8-13 20:48:10.7|Debug|Api|[GET] /api/v3/health: 200.OK (0 ms)
2020-8-13 20:48:10.7|Debug|Api|[PUT] /api/v3/config/host: 202.Accepted (27 ms)
2020-8-13 20:48:10.8|Debug|Api|[GET] /api/v3/health: 200.OK (0 ms)
2020-8-13 20:48:16.9|Debug|RootFolderService|Generating list of unmapped folders
2020-8-13 20:48:17.0|Debug|RootFolderService|2 unmapped folders detected.
2020-8-13 20:48:17.0|Debug|Api|[GET] /api/v3/rootFolder: 200.OK (4 ms)
2020-8-13 20:48:19.0|Debug|RootFolderService|Generating list of unmapped folders
2020-8-13 20:48:19.1|Debug|RootFolderService|2 unmapped folders detected.
2020-8-13 20:48:19.1|Debug|Api|[GET] /api/v3/rootFolder: 200.OK (4 ms)
2020-8-13 20:48:25.6|Debug|RootFolderService|Generating list of unmapped folders
2020-8-13 20:48:25.6|Debug|RootFolderService|2 unmapped folders detected.
2020-8-13 20:48:25.6|Debug|Api|[GET] /api/v3/rootFolder/1?timeout=false: 200.OK (4 ms)
2020-8-13 20:48:25.6|Debug|Parser|Parsing string 'Ghostbusters (1984)'
2020-8-13 20:48:25.6|Debug|Parser|Movie Parsed. Ghostbusters - 1984
2020-8-13 20:48:25.6|Debug|Parser|Release Group parsed:
2020-8-13 20:48:25.6|Debug|Parser|Languages parsed: Unknown
2020-8-13 20:48:25.6|Debug|QualityParser|Trying to parse quality for Ghostbusters (1984)
2020-8-13 20:48:25.6|Debug|Parser|Quality parsed: Unknown v1
2020-8-13 20:48:25.6|Debug|Parser|Edition parsed:
2020-8-13 20:48:25.7|Debug|Api|[GET] /api/v3/movie/lookup?term=Ghostbusters%20(1984): 200.OK (56 ms)
2020-8-13 20:48:25.7|Debug|Parser|Parsing string 'Ghostbusters (2016) [tmdb-43074]'
2020-8-13 20:48:25.7|Debug|Parser|Movie Parsed. Ghostbusters - 2016
2020-8-13 20:48:25.7|Debug|Parser|Release Group parsed:
2020-8-13 20:48:25.7|Debug|Parser|Languages parsed: Unknown
2020-8-13 20:48:25.7|Debug|QualityParser|Trying to parse quality for Ghostbusters (2016) [tmdb-43074]
2020-8-13 20:48:25.7|Debug|Parser|Quality parsed: Unknown v1
2020-8-13 20:48:25.7|Debug|Parser|Edition parsed:
2020-8-13 20:48:25.7|Debug|Api|[GET] /api/v3/movie/lookup?term=Ghostbusters%20(2016)%20%5Btmdb-43074%5D: 200.OK (59 ms)
2020-8-13 20:48:31.2|Debug|Api|[GET] /api/v3/health: 200.OK (0 ms)
2020-8-13 20:48:31.2|Debug|Api|[GET] /api/v3/system/status: 200.OK (0 ms)
2020-8-13 20:48:31.2|Debug|Api|[GET] /api/v3/diskspace: 200.OK (6 ms)
2020-8-13 20:48:33.4|Debug|Api|[GET] /api/v3/log/file: 200.OK (6 ms)
AB#828
@austinwbest commented on GitHub (Aug 19, 2020):
I added both ghostbusters to a root folder and went to import, it detected them both without issue.
@mopey69 commented on GitHub (Aug 21, 2020):
v2 did the same with this movie.
@Qstick commented on GitHub (Aug 22, 2020):
I can re-produce this

It happens because the metadata server returns the 1984 movie first even when using the year=2016 parameter
https://radarrapi.servarr.com/v1/search?q=ghostbusters&year=2016
That happens becuase TMDB returns the 1984 movie first even when a year is passed.
https://api.themoviedb.org/3/search/movie?api_key=1a7373301961d03f97f853a876dd1212&query=ghostbusters&year=2016
SO... this is really a TMDB search issue.
@Qstick commented on GitHub (Aug 22, 2020):
Actually the issue is we use
&yearwhen calling TMDB which means it will return results that have ANY release information for a given year. We should likely start with&primary_release_yearparameter.Would be nice if they would prioritize results with a primary release year first when searching by year
@stale[bot] commented on GitHub (Jan 8, 2022):
This issue has been automatically marked as stale because it has not had recent activity. Please verify that this is still an issue with the latest version of Radarr and report back. Otherwise this issue will be closed.
@bakerboy448 commented on GitHub (Jan 8, 2022):
Would this help / fix this?
https://github.com/Radarr/Radarr/pull/6870
@howardjones commented on GitHub (Jan 23, 2022):
Yes, this is the same issue. And I would still suggest that "the API gives this order so it not our problem" is not helpful to the user's experience.
@austinwbest commented on GitHub (Jan 23, 2022):
Where exactly does it say this is not our problem?
Q clearly said we should change things, as in radarr, as in this is something we can possibly take care of, as in the complete opposite of what you are quoting.
Maybe I am missing some posts on the thread though so please quote the post that says that so I have some clarification if you don't mind bud.
@howardjones commented on GitHub (Jan 24, 2022):
Sure, "On Hold: Metadata API blocking"? Or this: https://www.reddit.com/r/radarr/comments/rnlp69/comment/hpt2u1a
@bakerboy448 commented on GitHub (Jan 24, 2022):
Metadata meaning it'd be something to correct in our metadata server if TMDB won't cooperate.
But there's also already a PR going relating to this.
If it's something that would not be fixed - it would be closed.