mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-12 00:06:05 -07:00
* Fixed #3952 where the metadata update would fail
This commit is contained in:
parent
c26f3337ed
commit
b4b80165b9
1 changed files with 4 additions and 0 deletions
|
@ -420,6 +420,10 @@ namespace Ombi.Schedule.Jobs.Ombi
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
var entity = await _plex.Find(movie.Id);
|
var entity = await _plex.Find(movie.Id);
|
||||||
|
if (entity == null)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
entity.TheMovieDbId = movie.TheMovieDbId;
|
entity.TheMovieDbId = movie.TheMovieDbId;
|
||||||
_plex.UpdateWithoutSave(entity);
|
_plex.UpdateWithoutSave(entity);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue