Skip to content

Commit

Permalink
Resolve drone errors
Browse files Browse the repository at this point in the history
  • Loading branch information
johanah29 committed Dec 11, 2024
1 parent c745b8d commit b6b6a1f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ public static PayloadCreateInput buildPayload(@NotNull final JsonNode payloadNod
payloadCreateInput.setContent(payloadNode.get("command_content").textValue());
}
if (payloadNode.has("executable_arch")) {
payloadCreateInput.setExecutableArch(
Endpoint.PLATFORM_ARCH.valueOf(payloadNode.get("executable_arch").textValue()));
payloadCreateInput.setExecutionArch(
Payload.PAYLOAD_EXECUTION_ARCH.valueOf(payloadNode.get("executable_arch").textValue()));
}
if (payloadNode.has("executable_file")) {
payloadCreateInput.setExecutableFile(payloadNode.get("executable_file").textValue());
Expand Down

0 comments on commit b6b6a1f

Please sign in to comment.