Merge pull request #823 from lsellens/master

fix resuming from paused in kodi 18
This commit is contained in:
Rick164 2019-08-19 18:23:00 +02:00 committed by GitHub
commit fb413cd7e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -63,7 +63,8 @@ void XBMCVideoChecker::receiveReply()
// std::cout << "KODICHECK INFO: Kodi Message: " << reply.toStdString() << std::endl;
if ( (_xbmcVersion < 18 && reply.contains("\"method\":\"Player.OnPlay\"")) ||
(_xbmcVersion >= 18 && reply.contains("\"method\":\"Player.OnAVStart\"")) )
(_xbmcVersion >= 18 && reply.contains("\"method\":\"Player.OnAVStart\"") ||
reply.contains("\"method\":\"Player.OnResume\"")) )
{
// send a request for the current player state
_socket.write(_activePlayerRequest.toUtf8());