Преглед на файлове

Merge pull request #781 from 7illusions/master

DLNA GeneralCommand fix
Luke преди 11 години
родител
ревизия
2913638b67
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      MediaBrowser.Dlna/PlayTo/DlnaController.cs

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

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