diff options
| author | Bond-009 <bond.009@outlook.com> | 2021-01-07 10:04:02 +0100 |
|---|---|---|
| committer | Joshua M. Boniface <joshua@boniface.me> | 2021-01-23 15:37:25 -0500 |
| commit | d9a9a23a3c92ee49430972b53720ae4b44c3a30a (patch) | |
| tree | fee38dd5fa419efc63244533d5314161366abc29 /Emby.Server.Implementations/Session/SessionManager.cs | |
| parent | dd1fddf79c84be5caf27af45fde1da59693f0f1d (diff) | |
Merge pull request #4962 from thornbill/fix-playstate-name
Fix capitalization of Playstate message
(cherry picked from commit 07650d91dafbd55c3b4b7d29b01d47c2cde29712)
Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
Diffstat (limited to 'Emby.Server.Implementations/Session/SessionManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/Session/SessionManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Session/SessionManager.cs b/Emby.Server.Implementations/Session/SessionManager.cs index 885f65c64..4e026a0e6 100644 --- a/Emby.Server.Implementations/Session/SessionManager.cs +++ b/Emby.Server.Implementations/Session/SessionManager.cs @@ -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) |
