Skip to content

Commit f77d1eb

Browse files
committed
fix bug in ReportingAPiHTTP after changes
1 parent c41d12b commit f77d1eb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

agent_api/src/main/java/dev/aikido/agent_api/background/cloud/api/ReportingApiHTTP.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ private static APIResponse getUnsuccessfulAPIResponse(String error) {
152152
return new APIResponse(
153153
false, // Success
154154
error,
155-
0, null, null, null, false, false // Unimportant values.
155+
0, null, null, null, false, null, false, false // Unimportant values.
156156
);
157157
}
158158
}

0 commit comments

Comments
 (0)