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

fix tuner method

release-10.1.0
Luke Pulverenti 8 years ago
parent 9776ca09db
commit fcc26d5453

@ -167,10 +167,12 @@ namespace Emby.Server.Implementations.LiveTv.TunerHosts.HdHomerun
var tuners = new List<LiveTvTunerInfo>();
var uri = new Uri(info.Url);
using (var manager = new HdHomerunManager(_socketFactory))
{
// Legacy HdHomeruns are IPv4 only
var ipInfo = new IpAddressInfo(info.Url, IpAddressFamily.InterNetwork);
var ipInfo = new IpAddressInfo(uri.Host, IpAddressFamily.InterNetwork);
for (int i = 0; i < model.TunerCount; ++i)
{

Loading…
Cancel
Save