1
All checks were successful
API接口参数变更检测 / api-param-check (push) Successful in 29s

This commit is contained in:
2026-06-05 11:26:59 +08:00
parent ccbb84ccb8
commit 3ccc697af7

View File

@@ -69,8 +69,8 @@ public class CultureClockInController {
* @param lastCombo 上次组合
* @param response HttpServletResponse
*/
@GetMapping(value = "/random-preview/base641")
public ActionResult<Base64ImageVo> getRandomPicPreviewBase64(@RequestParam(value = "lastCombo1", required = false) String lastCombo, HttpServletRequest request, HttpServletResponse response) throws Exception {
@PostMapping(value = "/random-preview/base64")
public ActionResult<Base64ImageVo> getRandomPicPreviewBase64(@RequestParam(value = "lastCombo", required = false) String lastCombo, HttpServletRequest request, HttpServletResponse response) throws Exception {
MutablePair<String, BufferedImage> pair = cultureClockInService.getRandomPicPreview(lastCombo, requestUrl);
if (pair == null || pair.getRight() == null) {