From c15d523f3b1758196c3a7ae8754ea4365e86b0f2 Mon Sep 17 00:00:00 2001 From: Lixfel Date: Sat, 23 Nov 2024 17:09:58 +0100 Subject: [PATCH] Hotfix NodeDownload --- CommonCore/SQL/src/de/steamwar/sql/NodeDownload.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CommonCore/SQL/src/de/steamwar/sql/NodeDownload.java b/CommonCore/SQL/src/de/steamwar/sql/NodeDownload.java index 018d95d7..b3792b63 100644 --- a/CommonCore/SQL/src/de/steamwar/sql/NodeDownload.java +++ b/CommonCore/SQL/src/de/steamwar/sql/NodeDownload.java @@ -40,7 +40,7 @@ public class NodeDownload { private static final Table table = new Table<>(NodeDownload.class); private static final Statement insert = table.insertFields("NodeId", "Link"); - private static final SelectStatement select = table.select("link"); + private static final SelectStatement select = table.selectFields("link"); private static final Statement delete = table.delete(Table.PRIMARY);