aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Session
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2021-01-07 10:04:02 +0100
committerGitHub <noreply@github.com>2021-01-07 10:04:02 +0100
commit07650d91dafbd55c3b4b7d29b01d47c2cde29712 (patch)
tree7e3b31e4fe26bc2acef8c2f9963fdca3a4c3dd9e /Emby.Server.Implementations/Session
parent7758c61ea8e0863198509a8b75208683eb61812f (diff)
parentcfca27e99a40204bc8e4fff963ef1a67aeed1876 (diff)
Merge pull request #4962 from thornbill/fix-playstate-name
Fix capitalization of Playstate message
Diffstat (limited to 'Emby.Server.Implementations/Session')
-rw-r--r--Emby.Server.Implementations/Session/SessionManager.cs2
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)