Skip to content

Commit

Permalink
Update Tivusat
Browse files Browse the repository at this point in the history
Attempt to avoid channel name changes caused by background scanning.
  • Loading branch information
Huevos committed Apr 3, 2018
1 parent 0085c28 commit 9a42eec
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions AutoBouquetsMaker/providers/sat_130_tivusat.xml
Expand Up @@ -57,6 +57,11 @@ ftachannels = [1,2,3,20,21,22,23,24,26,28,31,32,33,35,36,37,41,42,43,44,55,57,60
if service["number"] in ftachannels:
service["free_ca"] = 0
dxNoSDT = 0x1 # details of lamedb flags are in README.txt
dxHoldName = 0x8 # details of lamedb flags are in README.txt
service["service_flags"] = dxNoSDT | dxHoldName
# 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
Expand Down

0 comments on commit 9a42eec

Please sign in to comment.