Skip to content

Commit

Permalink
fix: Modify id property naming
Browse files Browse the repository at this point in the history
  • Loading branch information
npole0103 committed Oct 17, 2022
1 parent 1b33d29 commit a1d3884
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/kr/markdown/alreadyme/service/AiService.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public void requestReadmeText(Long id, String githubOriginalUrl, String requestJ
ObjectMapper objectMapper = new ObjectMapper();
ObjectNode objectNode = objectMapper.createObjectNode();

objectNode.put("id", id);
objectNode.put("requestId", id);
objectNode.put("githubOriginalUrl", githubOriginalUrl);

ObjectNode jsonDataNode = (ObjectNode) new ObjectMapper().readTree(requestJsonData);
Expand Down

0 comments on commit a1d3884

Please sign in to comment.