Parcourir la source

Fix DlnaControlResponse string return

crobibero il y a 5 ans
Parent
commit
7d2ad3e0fc
1 fichiers modifiés avec 5 ajouts et 0 suppressions
  1. 5 0
      Emby.Dlna/ControlResponse.cs

+ 5 - 0
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;
+        }
     }
 }