Skip to content

Commit

Permalink
[video] Fix default select action 'show info' processing for PVR items.
Browse files Browse the repository at this point in the history
  • Loading branch information
ksooo committed Dec 20, 2024
1 parent f09a585 commit 9fd3f79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/video/guilib/VideoSelectActionProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ bool CVideoSelectActionProcessorBase::Process(Action action)
case ACTION_INFO:
{
if (GetDefaultAction() == ACTION_INFO && !KODI::VIDEO::IsVideoDb(*m_item) &&
!m_item->IsPlugin() && !m_item->IsScript() &&
!m_item->IsPlugin() && !m_item->IsScript() && !m_item->IsPVR() &&
!KODI::VIDEO::UTILS::HasItemVideoDbInformation(*m_item))
{
// for items without info fall back to default play action
Expand Down

0 comments on commit 9fd3f79

Please sign in to comment.