fix(plex-sync): match correct tmdb format for movies

pull/470/head
sct 4 years ago
parent ffe9e19c3b
commit 4205e32ae7

@ -100,7 +100,7 @@ class JobPlexSync {
let tmdbMovie: TmdbMovieDetails | undefined;
const imdbMatch = plexitem.guid.match(imdbRegex);
const tmdbMatch = plexitem.guid.match(tmdbRegex);
const tmdbMatch = plexitem.guid.match(tmdbShowRegex);
if (imdbMatch) {
tmdbMovie = await this.tmdb.getMovieByImdbId({

Loading…
Cancel
Save