Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/1dd6036765f08892a39530ad73f5b046afbdaaaf
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
7 additions and
6 deletions
@ -69,7 +69,7 @@ namespace Emby.Dlna.Ssdp
{
lock ( _syncLock )
{
if ( _listenerCount > 0 & & _deviceLocator = = null )
if ( _listenerCount > 0 & & _deviceLocator = = null & & _commsServer ! = null )
{
_deviceLocator = new SsdpDeviceLocator ( _commsServer ) ;
@ -27,14 +27,15 @@ namespace Rssdp.Infrastructure
/// </summary>
public SsdpDeviceLocator ( ISsdpCommunicationsServer communicationsServer )
{
_CommunicationsServer = communicationsServer ;
if ( communicationsServer ! = null )
if ( communicationsServer = = null )
{
// This can occur is dlna is enabled, but defined to run over https.
_CommunicationsServer . ResponseReceived + = CommsServer_ResponseReceived ;
throw new ArgumentNullException ( nameof ( communicationsServer ) ) ;
}
_CommunicationsServer = communicationsServer ;
// This can occur is dlna is enabled, but defined to run over https.
_CommunicationsServer . ResponseReceived + = CommsServer_ResponseReceived ;
_Devices = new List < DiscoveredSsdpDevice > ( ) ;
}