[RombaSharp] Fixes #7

This commit is contained in:
Matt Nadareski
2018-02-08 01:26:57 -08:00
parent 6b0402d84d
commit ef890827cb

View File

@@ -778,7 +778,7 @@ namespace RombaSharp
foreach (string dathash in unneeded)
{
query = "DELETE FROM dats WHERE hash=\"" + dathash + "\"";
query = "DELETE FROM dat WHERE hash=\"" + dathash + "\"";
slc = new SqliteCommand(query, dbc);
slc.ExecuteNonQuery();
slc.Dispose();