aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-02-05 23:39:10 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-02-05 23:39:10 -0500
commit7236ce0f92b684f1759b3fc272348b411dcf7c6b (patch)
treeafc4da28ef63c43c922cdf6e400510f136e927ee
parent60147b5a0b477f56cae40cd4a30b0b900d252fa3 (diff)
ensure server reports consistent uuid
-rw-r--r--MediaBrowser.Dlna/Server/DescriptionXmlBuilder.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Dlna/Server/DescriptionXmlBuilder.cs b/MediaBrowser.Dlna/Server/DescriptionXmlBuilder.cs
index 386370596c..281dee3e07 100644
--- a/MediaBrowser.Dlna/Server/DescriptionXmlBuilder.cs
+++ b/MediaBrowser.Dlna/Server/DescriptionXmlBuilder.cs
@@ -122,7 +122,7 @@ namespace MediaBrowser.Dlna.Server
builder.Append("<serialNumber>" + SecurityElement.Escape(_profile.SerialNumber) + "</serialNumber>");
}
- builder.Append("<UDN>uuid:" + SecurityElement.Escape(_serverUdn) + "</UDN>");
+ builder.Append("<UDN>uuid:" + SecurityElement.Escape(_serverId) + "</UDN>");
builder.Append("<presentationURL>" + SecurityElement.Escape(_serverAddress) + "</presentationURL>");
if (!EnableAbsoluteUrls)