Skip to content

Commit

Permalink
[TerrestrialBouquet] only show section markers in tv bouquet
Browse files Browse the repository at this point in the history
  • Loading branch information
Huevos committed Aug 9, 2024
1 parent f2e018c commit dca6300
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def writeBouquet(self, mode):
bouquet_list = []
bouquet_list.append("#NAME %s\n" % providers[self.config.providers.value].get("bouquetname", self.bouquetName))
for number in range(1, (highestLCN) // 1000 * 1000 + 1001): # ceil bouquet length to nearest 1000, range needs + 1
if number in active_sections:
if mode == MODE_TV and number in active_sections:
bouquet_list.append(self.bouquetMarker(sections[number]))
if number in lcnindex:
bouquet_list.append(self.bouquetServiceLine(self.services[lcnindex[number]]))
Expand Down

0 comments on commit dca6300

Please sign in to comment.