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

Update Emby.Server.Implementations/LiveTv/TunerHosts/BaseTunerHost.cs

pull/6397/head
Claus Vium 4 years ago committed by GitHub
parent 08152d2a98
commit e3c2a8a3be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -83,7 +83,7 @@ namespace Emby.Server.Implementations.LiveTv.TunerHosts
try
{
var channels = await GetChannels(host, enableCache, cancellationToken).ConfigureAwait(false);
var newChannels = channels.Where(i => !list.Any(l => string.Equals(i.Id, l.Id, StringComparison.OrdinalIgnoreCase)));
var newChannels = channels.Where(i => !list.Any(l => string.Equals(i.Id, l.Id, StringComparison.OrdinalIgnoreCase))).ToList();
list.AddRange(newChannels);

Loading…
Cancel
Save