Skip to content

Commit 5ab1704

Browse files
Fixes #10262. Don't try to print LinkageDescriptor using it's own toString since it doesn't have one..
1 parent 20edc92 commit 5ab1704

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mythtv/libs/libmythtv/mpeg/mpegdescriptors.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,8 +399,8 @@ QString MPEGDescriptor::toString() const
399399
SET_STRING(ConditionalAccessDescriptor);
400400
else if (DescriptorID::network_name == DescriptorTag())
401401
SET_STRING(NetworkNameDescriptor);
402-
else if (DescriptorID::linkage == DescriptorTag())
403-
SET_STRING(LinkageDescriptor);
402+
//else if (DescriptorID::linkage == DescriptorTag())
403+
// SET_STRING(LinkageDescriptor);
404404
else if (DescriptorID::adaptation_field_data == DescriptorTag())
405405
SET_STRING(AdaptationFieldDataDescriptor);
406406
//else if (DescriptorID::ancillary_data == DescriptorTag())

0 commit comments

Comments
 (0)