diff --git a/src/main/java/org/openbmp/db_rest/RestResponse.java b/src/main/java/org/openbmp/db_rest/RestResponse.java index 17ee235..ce7aa53 100644 --- a/src/main/java/org/openbmp/db_rest/RestResponse.java +++ b/src/main/java/org/openbmp/db_rest/RestResponse.java @@ -35,7 +35,7 @@ public static Response okWithBody(String body) { public static Response okWithBody(String body, Integer total_count) { Response.ResponseBuilder resp = Response.status(200).entity(body) .header("Access-Control-Allow-Origin", "*") - .header("Access-Control-Allow-Credentials ", "true") + .header("Access-Control-Allow-Credentials", "true") .header("Access-Control-Allow-Methods", "GET, POST") .allow("OPTIONS");