aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Session/SessionManager.cs
diff options
context:
space:
mode:
authorBill Thornton <billt2006@gmail.com>2021-01-05 10:06:55 -0500
committerBill Thornton <billt2006@gmail.com>2021-01-05 10:06:55 -0500
commitcfca27e99a40204bc8e4fff963ef1a67aeed1876 (patch)
treefa427d3637a247baf788b051a4f071678642751e /Emby.Server.Implementations/Session/SessionManager.cs
parenta4a261e9409487645ee22e3fc0957438c55b18b0 (diff)
Fix capitalization of Playstate message
Diffstat (limited to 'Emby.Server.Implementations/Session/SessionManager.cs')
-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)