This commit is contained in:
GregTCLTK 2020-03-30 16:31:30 +02:00
parent 042dc8cbbb
commit 38595bb1d0
No known key found for this signature in database
GPG key ID: A91BADE5C070FF67

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);
}