Skip to content

Commit

Permalink
fixed Panasonic loader rejecting all files
Browse files Browse the repository at this point in the history
  • Loading branch information
PredatH0r committed Jun 10, 2017
1 parent c576b94 commit e53d746
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/ChanSort.Loader.Panasonic/Serializer.cs
Expand Up @@ -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");

Expand Down
2 changes: 1 addition & 1 deletion source/ChanSort/MainForm.cs
Expand Up @@ -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<string> isoEncodings = new List<string>();
Expand Down

0 comments on commit e53d746

Please sign in to comment.