瀏覽代碼

激活BUG修复

wangliang 2 年之前
父節點
當前提交
db6da07fc8

+ 1 - 1
teachcloud-common-api/src/main/java/com/qmth/teachcloud/common/api/api/TSAuthController.java

@@ -88,7 +88,7 @@ public class TSAuthController {
                                    @ApiParam(value = "accessSecret", required = true) @RequestParam(required = true) String accessSecret) throws Exception {
         AppInfo appInfo = solarService.update(accessKey, accessSecret);
         if (Objects.isNull(appInfo)) {
-            throw ExceptionResultEnum.ERROR.exception("激活失败,请检查key和secret输入是否正确\"");
+            throw ExceptionResultEnum.ERROR.exception("激活失败,请检查key和secret输入是否正确");
         }
         authInfoService.appInfoInit(appInfo, accessKey, accessSecret);
         return ResultUtil.ok(true);