Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PVR] Fix empty videoplayer.plot infolabel when playing recorded TV and add … #7742

Closed
wants to merge 6 commits into from
9 changes: 9 additions & 0 deletions xbmc/GUIInfoManager.cpp
Expand Up @@ -4369,6 +4369,15 @@ std::string CGUIInfoManager::GetVideoLabel(int item)
}
}
}
else if (m_currentFile->HasPVRRecordingInfoTag())
{
switch (item)
{
/* Now playing infos */
case VIDEOPLAYER_PLOT:
return m_currentFile->GetPVRRecordingInfoTag()->m_strPlot;
}
}
else if (m_currentFile->HasVideoInfoTag())
{
switch (item)
Expand Down