Version 4.13.0

This commit is contained in:
ClemensF 2019-07-21 21:26:15 +02:00
parent 8244ddb5c3
commit 35582abc13

View file

@ -51,7 +51,7 @@ namespace MapControl.Caching
private SQLiteCommand GetItemCommand(string key)
{
var command = new SQLiteCommand("select expiration, buffer from items where key=@key", connection);
var command = new SQLiteCommand("select expiration, buffer from items where key = @key", connection);
command.Parameters.AddWithValue("@key", key);
return command;
}