From 398a3750f8263f6227fe280ad2b09bfd189319d9 Mon Sep 17 00:00:00 2001 From: Jerry Yan <792602257@qq.com> Date: Sun, 14 Dec 2025 12:20:48 +0800 Subject: [PATCH] =?UTF-8?q?todo:=20=E9=80=BB=E8=BE=91=E5=BC=84=E5=8F=8D?= =?UTF-8?q?=E4=BA=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../basic/controller/printer/PrinterTvController.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/ycwl/basic/controller/printer/PrinterTvController.java b/src/main/java/com/ycwl/basic/controller/printer/PrinterTvController.java index ff61bae9..fd70ae44 100644 --- a/src/main/java/com/ycwl/basic/controller/printer/PrinterTvController.java +++ b/src/main/java/com/ycwl/basic/controller/printer/PrinterTvController.java @@ -264,11 +264,11 @@ public class PrinterTvController { resp.setScenicId(scenicId); resp.setSources(sources); // 只有当添加了照片时才返回二维码URL - if (addedSources != null && !addedSources.isEmpty()) { - resp.setQrcodeUrl("https://zhentuai.com/printer/v1/tv/face/" + faceId + "/qrcode"); - } else { + //if (addedSources != null && !addedSources.isEmpty()) { + //resp.setQrcodeUrl("https://zhentuai.com/printer/v1/tv/face/" + faceId + "/qrcode"); + //} else { resp.setQrcodeUrl(null); - } + //} return ApiResponse.success(resp); }