Skip to content

Commit

Permalink
更新模块修改日志
Browse files Browse the repository at this point in the history
  • Loading branch information
hanaTsuk1 committed Jun 19, 2024
1 parent 21f277a commit 66b9e5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stores/useUpdateStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const useUpdateStore = defineStore('update', () => {
notify.error({
text: t('updater.checkUpdate'),
})
return error(e as string)
return error(`update check error: ${e}`)
}

if (update) {
Expand All @@ -50,7 +50,7 @@ export const useUpdateStore = defineStore('update', () => {
notify.error({
text: t('updater.updating'),
})
error(e as string)
error(`update downloadAndInstall error: ${e}`)
}
},
onClosed() {
Expand Down

0 comments on commit 66b9e5b

Please sign in to comment.