diff --git a/src/main/java/dev/salmonllama/fsbot/database/controllers/GalleryController.java b/src/main/java/dev/salmonllama/fsbot/database/controllers/GalleryController.java index 9a38d4c..5e68320 100644 --- a/src/main/java/dev/salmonllama/fsbot/database/controllers/GalleryController.java +++ b/src/main/java/dev/salmonllama/fsbot/database/controllers/GalleryController.java @@ -67,7 +67,7 @@ public class GalleryController { ); } - private static Collection getGalleriesByServerExec(String serverId) throws SQLException { + private static Collection getGalleriesByServerExec(String serverId) throws SQLException { // TODO: What if the server has no galleries eh? ResultSet rs = FSDB.get().select("SELECT * FROM galleries WHERE server_id = ?", serverId); Collection galleries = new ArrayList<>();