Fix corrupted database sql statements
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Bea 2023-01-16 05:00:18 +01:00
parent 009fec3be3
commit 118979bde4
1 changed files with 2 additions and 2 deletions

View File

@ -178,7 +178,7 @@ public class DatabaseSource {
public ChannelType getTrackedMessageChannelType(String messageId) {
String query = """
""SELECT channel_type
SELECT channel_type
FROM command_runners
WHERE message_id = ?;
""";
@ -202,7 +202,7 @@ public class DatabaseSource {
public String getTrackedReplyUserId(String messageId) {
String query = """
""SELECT user_id
SELECT user_id
FROM command_runners
WHERE message_id = ?;
""";