Update Device.cs

This commit is contained in:
BaronGreenback 2020-11-18 13:48:31 +00:00 committed by GitHub
parent 9a323f6df0
commit 7a26f64c7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -775,7 +775,7 @@ namespace Emby.Dlna.PlayTo
if (track == null) 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); return (true, null);
} }
@ -812,7 +812,7 @@ namespace Emby.Dlna.PlayTo
private XElement ParseResponse(string xml) private XElement ParseResponse(string xml)
{ {
// Handle different variations sent back by devices // Handle different variations sent back by devices.
try try
{ {
return XElement.Parse(xml); 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 try
{ {
return XElement.Parse("<data xmlns:dlna=\"urn:schemas-dlna-org:device-1-0\">" + xml + "</data>") return XElement.Parse("<data xmlns:dlna=\"urn:schemas-dlna-org:device-1-0\">" + xml + "</data>")