mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-02 12:22:52 +01:00
ipv6 fixes
This commit is contained in:
@@ -161,7 +161,7 @@ namespace MediaBrowser.Dlna.Main
|
||||
|
||||
var descriptorURI = "/dlna/" + udn + "/description.xml";
|
||||
|
||||
var uri = new Uri(_appHost.GetLocalApiUrl(addressString) + descriptorURI);
|
||||
var uri = new Uri(_appHost.GetLocalApiUrl(address) + descriptorURI);
|
||||
|
||||
var services = new List<string>
|
||||
{
|
||||
|
||||
@@ -171,7 +171,7 @@ namespace MediaBrowser.Dlna.PlayTo
|
||||
|
||||
private string GetServerAddress(IPAddress localIp)
|
||||
{
|
||||
return _appHost.GetLocalApiUrl(localIp.ToString());
|
||||
return _appHost.GetLocalApiUrl(localIp);
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
|
||||
Reference in New Issue
Block a user