diff options
| author | BaronGreenback <jimcartlidge@yahoo.co.uk> | 2020-11-18 13:48:31 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-18 13:48:31 +0000 |
| commit | 7a26f64c7badb05bc4e35cb678df6b7ffb9bc540 (patch) | |
| tree | c5526e84d02120648a0d7fe079a292777cc159e8 | |
| parent | 9a323f6df08927b5db06ba634f430523a236265f (diff) | |
Update Device.cs
| -rw-r--r-- | Emby.Dlna/PlayTo/Device.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Emby.Dlna/PlayTo/Device.cs b/Emby.Dlna/PlayTo/Device.cs index 58a7ea137..f8ff03076 100644 --- a/Emby.Dlna/PlayTo/Device.cs +++ b/Emby.Dlna/PlayTo/Device.cs @@ -775,7 +775,7 @@ namespace Emby.Dlna.PlayTo if (track == null) { - // If track is null, some vendors do this, use GetMediaInfo instead + // If track is null, some vendors do this, use GetMediaInfo instead. return (true, null); } @@ -812,7 +812,7 @@ namespace Emby.Dlna.PlayTo private XElement ParseResponse(string xml) { - // Handle different variations sent back by devices + // Handle different variations sent back by devices. try { return XElement.Parse(xml); @@ -821,7 +821,7 @@ namespace Emby.Dlna.PlayTo { } - // first try to add a root node with a dlna namesake + // first try to add a root node with a dlna namespace. try { return XElement.Parse("<data xmlns:dlna=\"urn:schemas-dlna-org:device-1-0\">" + xml + "</data>") |
