mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-05-07 06:16:41 +02:00
- fixed: various .xml file formats could not be loaded anymore
- channels can also be swapped now be directly selecting two rows and clicking on "swap" - swapping mark (strike through) is now automatically removed after swapping - swapping is now recognized as a change and will prompt to save the list on exit
This commit is contained in:
@@ -138,7 +138,9 @@ namespace ChanSort.Loader.Philips
|
||||
if (majorVersion == -1)
|
||||
return new DbSerializer(inputFile);
|
||||
|
||||
throw LoaderException.Fail(majorVersion == int.MinValue ? SerializerBase.ERR_UnknownFormat : $"Philips ChannelMap format version {majorVersion} is not supported (yet).");
|
||||
if (majorVersion != int.MinValue)
|
||||
throw LoaderException.Fail($"Philips ChannelMap format version {majorVersion} is not supported (yet).");
|
||||
throw LoaderException.TryNext(SerializerBase.ERR_UnknownFormat);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user