mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-31 04:05:50 -04:00
Fix capitalization of Playstate message
This commit is contained in:
parent
a4a261e940
commit
cfca27e99a
@ -826,7 +826,7 @@ namespace Emby.Dlna.PlayTo
|
|||||||
return SendPlayCommand(data as PlayRequest, cancellationToken);
|
return SendPlayCommand(data as PlayRequest, cancellationToken);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (name == SessionMessageType.PlayState)
|
if (name == SessionMessageType.Playstate)
|
||||||
{
|
{
|
||||||
return SendPlaystateCommand(data as PlaystateRequest, cancellationToken);
|
return SendPlaystateCommand(data as PlaystateRequest, cancellationToken);
|
||||||
}
|
}
|
||||||
|
@ -1310,7 +1310,7 @@ namespace Emby.Server.Implementations.Session
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return SendMessageToSession(session, SessionMessageType.PlayState, command, cancellationToken);
|
return SendMessageToSession(session, SessionMessageType.Playstate, command, cancellationToken);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void AssertCanControl(SessionInfo session, SessionInfo controllingSession)
|
private static void AssertCanControl(SessionInfo session, SessionInfo controllingSession)
|
||||||
|
@ -15,7 +15,7 @@ namespace MediaBrowser.Model.Session
|
|||||||
Play,
|
Play,
|
||||||
SyncPlayCommand,
|
SyncPlayCommand,
|
||||||
SyncPlayGroupUpdate,
|
SyncPlayGroupUpdate,
|
||||||
PlayState,
|
Playstate,
|
||||||
RestartRequired,
|
RestartRequired,
|
||||||
ServerShuttingDown,
|
ServerShuttingDown,
|
||||||
ServerRestarting,
|
ServerRestarting,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user