diff --git a/src/main/java/com/rubix/core/Controllers/Basics.java b/src/main/java/com/rubix/core/Controllers/Basics.java index fc0c02f..fd7397f 100644 --- a/src/main/java/com/rubix/core/Controllers/Basics.java +++ b/src/main/java/com/rubix/core/Controllers/Basics.java @@ -212,8 +212,8 @@ public String getBootstrap() throws IOException, JSONException { result.put("response", "Bootstrap List"); // result.put("message", "Bootstrap added: " + bootstrapId); result.put("message", BOOTSTRAPS.toString().replace(",", "") // remove the commas - .replace("[", "") // remove the right bracket - .replace("]", "") // remove the left bracket + .replace("[", "") // remove the left bracket + .replace("]", "") // remove the right bracket .trim()); result.put("ipfs-config-sync", configMatching); return result.toString();