- fixed support for Dijitsu channel lists with missing atv\_cmdb\_2.bin file

- experimental support for Metz channel\_list.xml lists
This commit is contained in:
Horst Beham
2024-02-25 17:59:34 +01:00
parent a10795285c
commit c609b9b40c
23 changed files with 397 additions and 368 deletions

View File

@@ -16,7 +16,7 @@ namespace ChanSort.Loader.CmdbBin
// ignore Philips ChannelMap_100 channel lists which don't have atv_cmdb.bin and dtv_cmdb_2.bin in the same folder
var anchorFile = Path.Combine(dir, "dtv_cmdb_2.bin");
if (File.Exists(anchorFile) && File.Exists(Path.Combine(dir, "atv_cmdb.bin")))
if (File.Exists(anchorFile) || File.Exists(Path.Combine(dir, "atv_cmdb.bin")))
return new CmdbFileSerializer(anchorFile);
return null;