Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/415e9ecbae855f419c28069ef638c57d28057092 You should set ROOT_URL correctly, otherwise the web may not work correctly.
pull/3598/head
tidusjar 5 years ago
parent 6a104afb33
commit 415e9ecbae

@ -139,7 +139,7 @@ namespace Ombi.Schedule.Jobs.Ombi
private async Task StartEmbyTv()
{
var allTv = _embyRepo.GetAll().Where(x =>
x.Type == EmbyMediaType.Series && (!x.TheMovieDbId.HasValue() || !x.ImdbId.HasValue() || !x.TvDbId.HasValue()));
x.Type == EmbyMediaType.Series && (x.TheMovieDbId == null || x.ImdbId == null || x.TvDbId == null));
foreach (var show in allTv)
{
@ -204,7 +204,7 @@ namespace Ombi.Schedule.Jobs.Ombi
private async Task StartEmbyMovies(EmbySettings settings)
{
var allMovies = _embyRepo.GetAll().Where(x =>
x.Type == EmbyMediaType.Movie && (!x.TheMovieDbId.HasValue() || !x.ImdbId.HasValue()));
x.Type == EmbyMediaType.Movie && (x.TheMovieDbId == null || x.ImdbId == null));
foreach (var movie in allMovies)
{
movie.ImdbId.HasValue();

Loading…
Cancel
Save