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

* Fixed where the metadata update would fail

pull/3970/head
tidusjar 4 years ago
parent c26f3337ed
commit b4b80165b9

@ -420,6 +420,10 @@ namespace Ombi.Schedule.Jobs.Ombi
continue;
}
var entity = await _plex.Find(movie.Id);
if (entity == null)
{
return;
}
entity.TheMovieDbId = movie.TheMovieDbId;
_plex.UpdateWithoutSave(entity);
}

Loading…
Cancel
Save