diff options
Diffstat (limited to 'MediaBrowser.Dlna/Server/UpnpDevice.cs')
| -rw-r--r-- | MediaBrowser.Dlna/Server/UpnpDevice.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.Dlna/Server/UpnpDevice.cs b/MediaBrowser.Dlna/Server/UpnpDevice.cs index 870e3c24f9..10eaeb0535 100644 --- a/MediaBrowser.Dlna/Server/UpnpDevice.cs +++ b/MediaBrowser.Dlna/Server/UpnpDevice.cs @@ -8,10 +8,10 @@ namespace MediaBrowser.Dlna.Server public readonly Uri Descriptor; public readonly string Type; public readonly string USN; - public readonly Guid Uuid; + public readonly string Uuid; public readonly IPAddress Address; - public UpnpDevice(Guid aUuid, string aType, Uri aDescriptor, IPAddress address) + public UpnpDevice(string aUuid, string aType, Uri aDescriptor, IPAddress address) { Uuid = aUuid; Type = aType; @@ -25,7 +25,7 @@ namespace MediaBrowser.Dlna.Server } else { - USN = String.Format("uuid:{0}::{1}", Uuid.ToString("N"), Type); + USN = String.Format("uuid:{0}::{1}", Uuid, Type); } } } |
