Merge pull request #425 from BigBotNetwork/greg-dev

Debug
This commit is contained in:
Skidder 2020-03-30 16:31:54 +02:00 committed by GitHub
commit 2a15c34b72
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -78,6 +78,7 @@ public class Rethink {
public JSONObject getObjectByID(String table, String id) {
String response = r.table(table).get(id).toJson().run(conn);
System.out.println(response);
return new JSONObject(response);
}