Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/62faa1aad8afd9d4b57efc965bdde970e9c05a26 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Don't try to add MovieMeta if mapping fails for list items

pull/7283/head
Qstick 3 years ago
parent 907950e309
commit 62faa1aad8

@ -178,12 +178,12 @@ namespace NzbDrone.Core.ImportLists
{
var mappedMovie = _movieSearch.MapMovieToTmdbMovie(new MovieMetadata { Title = report.Title, TmdbId = report.TmdbId, ImdbId = report.ImdbId, Year = report.Year });
_movieMetadataService.Upsert(mappedMovie);
var mappedListMovie = new ImportListMovie { ListId = report.ListId };
if (mappedMovie != null)
{
_movieMetadataService.Upsert(mappedMovie);
mappedListMovie.MovieMetadata = mappedMovie;
mappedListMovie.MovieMetadataId = mappedMovie.Id;
}

Loading…
Cancel
Save