mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-05-07 01:15:55 +02:00
- 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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user