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

Log episode id and series id when either request fails

pull/1628/head
Claus Vium 6 years ago
parent 14575f0a06
commit 38b0967044

@ -118,7 +118,7 @@ namespace MediaBrowser.Providers.TV.TheTVDB
}
catch (TvDbServerException e)
{
_logger.LogError(e, "Failed to retrieve episode with id {TvDbId}", episodeTvdbId ?? seriesTvdbId);
_logger.LogError(e, "Failed to retrieve episode with id {EpisodeTvDbId}, series id {SeriesTvdbId}", episodeTvdbId, seriesTvdbId);
}
return result;

Loading…
Cancel
Save