Skip to content

Commit

Permalink
Merge pull request xbmc#26130 from ksooo/video-fix-pvr-default-select…
Browse files Browse the repository at this point in the history
…-action-info

[video] Fix default select action 'show info' processing for PVR items.
  • Loading branch information
ksooo authored Dec 20, 2024
2 parents 0bbba39 + 9fd3f79 commit ab0e10e
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 ab0e10e

Please sign in to comment.