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

Call GetConfiguration just once in function

pull/8775/head
SenorSmartyPants 2 years ago
parent 159a244654
commit 8f4ac1cb81

@ -1814,7 +1814,9 @@ namespace Emby.Server.Implementations.LiveTv.EmbyTV
program.AddGenre("News");
}
if (GetConfiguration().SaveRecordingNFO)
var config = GetConfiguration();
if (config.SaveRecordingNFO)
{
if (timer.IsProgramSeries)
{
@ -1831,7 +1833,7 @@ namespace Emby.Server.Implementations.LiveTv.EmbyTV
}
}
if (GetConfiguration().SaveRecordingImages)
if (config.SaveRecordingImages)
{
await SaveRecordingImages(recordingPath, program).ConfigureAwait(false);
}

Loading…
Cancel
Save