Browse Source

Merge pull request #781 from 7illusions/master

DLNA GeneralCommand fix
Luke 11 năm trước cách đây
mục cha
commit
2913638b67

+ 1 - 1
MediaBrowser.Dlna/PlayTo/DlnaController.cs

@@ -618,7 +618,7 @@ namespace MediaBrowser.Dlna.PlayTo
         {
         {
             GeneralCommandType commandType;
             GeneralCommandType commandType;
 
 
-            if (!Enum.TryParse(command.Name, true, out commandType))
+            if (Enum.TryParse(command.Name, true, out commandType))
             {
             {
                 switch (commandType)
                 switch (commandType)
                 {
                 {