Skip to content

Commit

Permalink
- epgview: try to fix audioInfo; show streamtype 0x04; thx to DdD
Browse files Browse the repository at this point in the history
  • Loading branch information
vanhofen committed Jun 3, 2023
1 parent 5fbe77a commit 8a21456
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/epgview.cpp
Expand Up @@ -859,7 +859,7 @@ int CEpgData::show(const t_channel_id channel_id, uint64_t a_id, time_t* a_start
if (hasComponentTags)
{
for (unsigned int i = 0; i < tags.size(); i++)
if (tags[i].streamContent == 2 && !tags[i].component.empty())
if ((tags[i].streamContent == 2 || tags[i].streamContent == 4) && !tags[i].component.empty())
audioInfo += tags[i].component + ", ";

if (!audioInfo.empty())
Expand Down

0 comments on commit 8a21456

Please sign in to comment.