From e53d746197cbc22932f55d375aa290e43251f6a2 Mon Sep 17 00:00:00 2001 From: hbeham Date: Sat, 10 Jun 2017 12:19:36 +0200 Subject: [PATCH] fixed Panasonic loader rejecting all files --- source/ChanSort.Loader.Panasonic/Serializer.cs | 2 +- source/ChanSort/MainForm.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/ChanSort.Loader.Panasonic/Serializer.cs b/source/ChanSort.Loader.Panasonic/Serializer.cs index ca250cd2..c973303a 100644 --- a/source/ChanSort.Loader.Panasonic/Serializer.cs +++ b/source/ChanSort.Loader.Panasonic/Serializer.cs @@ -340,7 +340,7 @@ public override void Load() RepairCorruptedDatabaseImage(cmd); InitCharacterEncoding(cmd); - cmd.CommandText = "SELECT count(1) FROM sqlite_master WHERE type = 'table' and name in ('svl', 'tsl')"; + cmd.CommandText = "SELECT count(1) FROM sqlite_master WHERE type = 'table' and name in ('SVL', 'TSL')"; if (Convert.ToInt32(cmd.ExecuteScalar()) != 2) throw new FileLoadException("File doesn't contain the expected TSL/SVL tables"); diff --git a/source/ChanSort/MainForm.cs b/source/ChanSort/MainForm.cs index 63fb4ac0..b7eff777 100644 --- a/source/ChanSort/MainForm.cs +++ b/source/ChanSort/MainForm.cs @@ -31,7 +31,7 @@ namespace ChanSort.Ui { public partial class MainForm : XtraForm { - public const string AppVersion = "v2017-06-08"; + public const string AppVersion = "v2017-06-10"; private const int MaxMruEntries = 10; private readonly List isoEncodings = new List();