From 2997510669d0686077e8f0a6fe45e8cbc0d38dc5 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Sat, 3 Jun 2023 12:38:33 +0200 Subject: [PATCH] epgview: try to fix audioInfo; show streamtype 0x04; thx to DdD Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/8a21456b783dd7453127b58ad1f01c32d658089d Author: vanhofen Date: 2023-06-03 (Sat, 03 Jun 2023) Origin message was: ------------------ - epgview: try to fix audioInfo; show streamtype 0x04; thx to DdD ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/gui/epgview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/epgview.cpp b/src/gui/epgview.cpp index 922863285..787f28daf 100644 --- a/src/gui/epgview.cpp +++ b/src/gui/epgview.cpp @@ -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())