mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-17 15:10:12 +01:00
🎨 Add version info at the end of message in all error notifications Fix https://github.com/siyuan-note/siyuan/issues/7899
This commit is contained in:
parent
2bf41d07cc
commit
86cbf95d5b
2 changed files with 1 additions and 1 deletions
|
|
@ -518,7 +518,6 @@ func formatErrorMsg(err error) string {
|
||||||
msg = Conf.Language(28)
|
msg = Conf.Language(28)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
msg = msg + " v" + util.Ver
|
|
||||||
return msg
|
return msg
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -142,6 +142,7 @@ func PushMsg(msg string, timeout int) (msgId string) {
|
||||||
|
|
||||||
func PushErrMsg(msg string, timeout int) (msgId string) {
|
func PushErrMsg(msg string, timeout int) (msgId string) {
|
||||||
msgId = gulu.Rand.String(7)
|
msgId = gulu.Rand.String(7)
|
||||||
|
msg += msg + " v" + Ver // Add version info at the end of message in all error notifications https://github.com/siyuan-note/siyuan/issues/7899
|
||||||
BroadcastByType("main", "msg", -1, msg, map[string]interface{}{"id": msgId, "closeTimeout": timeout})
|
BroadcastByType("main", "msg", -1, msg, map[string]interface{}{"id": msgId, "closeTimeout": timeout})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue