From 18f13b0e279b770adad7652b84a5bea2f7141364 Mon Sep 17 00:00:00 2001 From: Huevos Date: Sat, 11 Mar 2017 18:58:51 +0100 Subject: [PATCH] [Provider:Tivu] Fix HD channels with wrong service type. --- AutoBouquetsMaker/providers/sat_130_tivusat.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/AutoBouquetsMaker/providers/sat_130_tivusat.xml b/AutoBouquetsMaker/providers/sat_130_tivusat.xml index 2e21971c..efff01d7 100644 --- a/AutoBouquetsMaker/providers/sat_130_tivusat.xml +++ b/AutoBouquetsMaker/providers/sat_130_tivusat.xml @@ -28,6 +28,10 @@ ftachannels = [1,2,3,20,21,22,23,24,26,28,31,32,33,35,36,37,41,42,43,44,55,57,60,61,62,63,64,65,66,67,68,69,71,73,74,75,76,77,120,122,145,188,701] if service["number"] in ftachannels: service["free_ca"] = 0 + +# Correct service type of HD channels not marked as such +if service["service_type"] in DvbScanner.VIDEO_ALLOWED_TYPES and service["service_type"] not in DvbScanner.HD_ALLOWED_TYPES and service["service_name"][-2:] == 'HD': + service["service_type"] = 25 ]]> \ No newline at end of file