Fix DlnaControlResponse string return

This commit is contained in:
crobibero 2020-08-16 08:32:03 -06:00
parent 2d4e91c5a2
commit 7d2ad3e0fc
1 changed files with 5 additions and 0 deletions

View File

@ -16,5 +16,10 @@ namespace Emby.Dlna
public string Xml { get; set; }
public bool IsSuccessful { get; set; }
public override string ToString()
{
return Xml;
}
}
}