Skip to content

Commit

Permalink
Fix incorrect tag
Browse files Browse the repository at this point in the history
Since Matrix the wrong  XML tag was being extracted so the genre colour and genre text have been incorrect.  Will backport to Omega with changes from @ksooo improving the port from Omega in this PR.
  • Loading branch information
emveepee committed Sep 1, 2024
1 parent c3f5d40 commit 170370c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EPG.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ PVR_ERROR EPG::GetEPGForChannel(int channelUid, time_t start, time_t end, kodi::
{
// genre type
broadcast.SetGenreType(XMLUtils::GetIntValue(pListingNode, "genre_type"));
broadcast.SetGenreSubType(XMLUtils::GetIntValue(pListingNode, "genre_sub_type"));
broadcast.SetGenreSubType(XMLUtils::GetIntValue(pListingNode, "genre_subtype"));

}
std::string allGenres;
Expand Down

0 comments on commit 170370c

Please sign in to comment.