From d101ca17b4a7abd0b7d9f210b32059a46026ea0c Mon Sep 17 00:00:00 2001 From: ksooo <3226626+ksooo@users.noreply.github.com> Date: Sat, 21 Oct 2023 15:04:13 +0200 Subject: Revert "[playlistplayer] Fix PVR items not handled correctly. Those need to be played using CApplication::PlayMedia" This reverts commit 3816a0ada63c824b82c1404df17a4b813256b727. --- xbmc/PlayListPlayer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xbmc/PlayListPlayer.cpp b/xbmc/PlayListPlayer.cpp index 608130b9a1..b86e1cfbdf 100644 --- a/xbmc/PlayListPlayer.cpp +++ b/xbmc/PlayListPlayer.cpp @@ -958,7 +958,7 @@ void PLAYLIST::CPlayListPlayer::OnApplicationMessage(KODI::MESSAGING::ThreadMess { return; } - if (!item->IsPVR() && (item->IsAudio() || item->IsVideo())) + if (item->IsAudio() || item->IsVideo()) Play(item, pMsg->strParam); else g_application.PlayMedia(*item, pMsg->strParam, playlistId); -- cgit v1.2.3