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

Fixed issue with episodeguide URL #ND-21

pull/2/head
Mark McDowall 13 years ago
parent 4776f0430b
commit c5e4b157f6

@ -43,7 +43,7 @@ namespace NzbDrone.Core.Providers.Metadata
tvShow.Add(new XElement("title", tvDbSeries.SeriesName));
tvShow.Add(new XElement("rating", tvDbSeries.Rating));
tvShow.Add(new XElement("plot", tvDbSeries.Overview));
tvShow.Add(new XElement("episodeguide", new XElement("url"), episodeGuideUrl));
tvShow.Add(new XElement("episodeguide", new XElement("url", episodeGuideUrl)));
tvShow.Add(new XElement("episodeguideurl", episodeGuideUrl));
tvShow.Add(new XElement("mpaa", tvDbSeries.ContentRating));
tvShow.Add(new XElement("genre", tvDbSeries.GenreString));

Loading…
Cancel
Save