aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorksooo <3226626+ksooo@users.noreply.github.com>2023-10-21 15:04:13 +0200
committerksooo <3226626+ksooo@users.noreply.github.com>2023-10-21 15:35:40 +0200
commitd101ca17b4a7abd0b7d9f210b32059a46026ea0c (patch)
treec6ce39dc5846f449a55ef3cca3da46fbe01b4fd6
parent55c05bdc51ba60de0bfe6ba9e93944327d13760e (diff)
Revert "[playlistplayer] Fix PVR items not handled correctly. Those need to be played using CApplication::PlayMedia"
This reverts commit 3816a0ada63c824b82c1404df17a4b813256b727.
-rw-r--r--xbmc/PlayListPlayer.cpp2
1 files changed, 1 insertions, 1 deletions
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);