Merge pull request #781 from 7illusions/master

DLNA GeneralCommand fix
This commit is contained in:
Luke 2014-04-14 08:41:59 -04:00
commit 2913638b67

View file

@ -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)
{