Skip to content

Commit

Permalink
修复升级脚本
Browse files Browse the repository at this point in the history
  • Loading branch information
Ghost-chu committed Dec 2, 2024
1 parent 0d87b9d commit 58e7691
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ public void pushProvidersSMTPStructUpgrade() {
config.set("encryption", "STARTTLS");
config.set("sendPartial", true);
}
single.set("config", config);
}
pushNotification.set(key, single);
conf.set(key, single);
}
}
Expand All @@ -63,8 +65,9 @@ public void pushProvidersCleanup() {
single.set("sendkey", sendKey);
single.set("send-key", null);
}
conf.set(key, single);
pushNotification.set(key, single);
}
conf.set("push-notification", pushNotification);
}

@UpdateScript(version = 24)
Expand Down

0 comments on commit 58e7691

Please sign in to comment.