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

@cosmetic Simplify ical ProductId code since adding properties ()

pull/2165/head
James White 8 years ago committed by Leonardo Galli
parent 1d8eec42ef
commit 805927205c

@ -82,9 +82,10 @@ namespace NzbDrone.Api.Calendar
}
var movies = _movieService.GetMoviesBetweenDates(start, end, unmonitored);
var calendar = new Ical.Net.Calendar();
calendar.ProductId = "-//radarr.video//Radarr//EN";
var calendar = new Ical.Net.Calendar
{
ProductId = "-//radarr.video//Radarr//EN"
};
var calendarName = "Radarr Movies Calendar";
calendar.AddProperty(new CalendarProperty("NAME", calendarName));

Loading…
Cancel
Save