Debug #425

Merged
greg6775 merged 1 commit from greg-dev into master 2020-03-30 16:31:55 +02:00

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