From a121a8a70ed408993959c87d41b007e500cb3dfa Mon Sep 17 00:00:00 2001 From: makejava <1353036300@qq.com> Date: Mon, 6 Sep 2021 09:10:43 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=97=A0=E6=B3=95=E5=88=87?= =?UTF-8?q?=E6=8D=A2=E6=A8=A1=E6=9D=BF=E5=88=86=E7=BB=84BUG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/sjhy/plugin/ui/TemplateSettingForm.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/sjhy/plugin/ui/TemplateSettingForm.java b/src/main/java/com/sjhy/plugin/ui/TemplateSettingForm.java index aec358b..4e3b2c2 100644 --- a/src/main/java/com/sjhy/plugin/ui/TemplateSettingForm.java +++ b/src/main/java/com/sjhy/plugin/ui/TemplateSettingForm.java @@ -131,7 +131,7 @@ public class TemplateSettingForm implements Configurable, BaseSettings { // 复制配置,防止篡改 this.templateGroupMap = CloneUtils.cloneByJson(settingsStorage.getTemplateGroupMap(), new TypeReference>() { }); - this.currTemplateGroup = this.templateGroupMap.get(settingsStorage.getCurrTypeMapperGroupName()); + this.currTemplateGroup = this.templateGroupMap.get(settingsStorage.getCurrTemplateGroupName()); if (this.currTemplateGroup == null) { this.currTemplateGroup = this.templateGroupMap.get(GlobalDict.DEFAULT_GROUP_NAME); }