fix: correct movie year extraction in TmdbMetadataProvider #1
Loading…
Reference in a new issue
No description provided.
Delete branch "bugfix/tmdb-year-extraction"
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?
The ExtractMovieInfo regex expected format 'Title.2016.Audio...' but
real filenames use 'Title (2016).ext'. This caused wrong year matching
and incorrect TMDB lookups (e.g. 'Zoomania (2016)' matched to 'Zoomania 2 (2025)').
Now uses word boundary regex to extract year and prefers already-parsed
file.Year from FilenameParserService.