Skip to content

Commit 03ffc8a

Browse files
Fixing small issue with cloud encryption keys json
1 parent c4eaa40 commit 03ffc8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/uid2/core/vertx/CoreVerticle.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,7 @@ void handleCloudEncryptionKeysRetrieval(RoutingContext rc) {
621621
}
622622

623623
JsonObject response = new JsonObject()
624-
.put("cloudEncryptionKeys", new JsonArray(cloudEncryptionKeys));
624+
.put("cloud_encryption_keys", new JsonArray(cloudEncryptionKeys));
625625

626626
rc.response().putHeader(HttpHeaders.CONTENT_TYPE, "application/json")
627627
.end(response.encode());

0 commit comments

Comments
 (0)