Skip to content

Commit

Permalink
更新了自动检查更新提示信息
Browse files Browse the repository at this point in the history
  • Loading branch information
ColdeZhang committed Apr 28, 2024
1 parent 2c344c8 commit 3c38d4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>cn.lunadeer</groupId>
<artifactId>Dominion</artifactId>
<version>1.21.8-beta</version>
<version>1.21.9-beta</version>
<packaging>jar</packaging>

<name>Dominion</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ private void getLatestRelease() {
JSONObject latestRelease = (JSONObject) releaseList.get(0);
GiteaRelease release = new GiteaRelease();
release.tag_name = (String) latestRelease.get("tag_name");
release.message = getTagMessage(release.tag_name);
release.message = (String) latestRelease.get("body");
release.html_url = (String) latestRelease.get("html_url");
JSONArray assets = (JSONArray) latestRelease.get("assets");
if (assets.size() > 0) {
Expand Down

0 comments on commit 3c38d4e

Please sign in to comment.