Skip to content

Commit

Permalink
chore: 调整更新失败字符串
Browse files Browse the repository at this point in the history
  • Loading branch information
Keldos-Li committed Oct 6, 2023
1 parent dc5bb21 commit bb4c268
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web_assets/javascript/updater.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var statusObserver = new MutationObserver(function (mutationsList) {
isLatestVersion = true;
enableUpdateBtns();
} else if (getUpdateStatus() === "failure") {
updatingInfoElement.innerHTML = i18n(updateFailure_i18n);
updatingInfoElement.innerHTML = marked.parse(updateFailure_i18n, {mangle: false, headerIds: false});
disableUpdateBtn_enableCancelBtn();
} else if (getUpdateStatus() != "") {
updatingInfoElement.innerText = getUpdateStatus();
Expand Down

0 comments on commit bb4c268

Please sign in to comment.