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

Update Jellyfin.Data/DayOfWeekHelper.cs

pull/9282/head
Claus Vium 2 years ago committed by cvium
parent 209edd38a4
commit a4c3011ee8

@ -23,7 +23,7 @@ namespace Jellyfin.Data
return dynamicDayOfWeek switch
{
DynamicDayOfWeek.Everyday => true,
DynamicDayOfWeek.Weekday => dayOfWeek is > DayOfWeek.Sunday and <= DayOfWeek.Friday,
DynamicDayOfWeek.Weekday => dayOfWeek is >= DayOfWeek.Monday and <= DayOfWeek.Friday,
DynamicDayOfWeek.Weekend => dayOfWeek is DayOfWeek.Saturday or DayOfWeek.Sunday,
_ => (DayOfWeek)dynamicDayOfWeek == dayOfWeek
};

Loading…
Cancel
Save