Merge pull request #4962 from thornbill/fix-playstate-name

Fix capitalization of Playstate message
This commit is contained in:
Bond-009
2021-01-07 10:04:02 +01:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

View File

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