diff options
| author | crobibero <cody@robibe.ro> | 2020-08-16 08:32:03 -0600 |
|---|---|---|
| committer | crobibero <cody@robibe.ro> | 2020-08-16 08:32:03 -0600 |
| commit | 7d2ad3e0fc4e1002d5d5739e0766fb0c253f32f4 (patch) | |
| tree | c6af0804d7235186dc1b3ddf73fbe776fa58dcec | |
| parent | 2d4e91c5a202aeb7b5d6d2206767d05a8f850212 (diff) | |
Fix DlnaControlResponse string return
| -rw-r--r-- | Emby.Dlna/ControlResponse.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Emby.Dlna/ControlResponse.cs b/Emby.Dlna/ControlResponse.cs index 140ef9b46..ee72329b7 100644 --- a/Emby.Dlna/ControlResponse.cs +++ b/Emby.Dlna/ControlResponse.cs @@ -16,5 +16,10 @@ namespace Emby.Dlna public string Xml { get; set; } public bool IsSuccessful { get; set; } + + public override string ToString() + { + return Xml; + } } } |
