Fix error on purge with sql-storage

This commit is contained in:
Lukas Rieger (Blue) 2023-03-17 20:04:24 +01:00
parent bf243ea204
commit 86a46477ab
No known key found for this signature in database
GPG Key ID: 2D09EC5ED2687FF2
1 changed files with 2 additions and 2 deletions

View File

@ -398,8 +398,8 @@ public class SQLStorage extends Storage {
);
executeUpdate(connection,
"DELETE t " +
"FROM `bluemap_map`" +
"DELETE " +
"FROM `bluemap_map` " +
"WHERE `map_id` = ?",
mapId
);