🎨 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:
Liang Ding 2023-04-06 15:22:02 +08:00
parent a7e4eed843
commit 9fdefe15de
No known key found for this signature in database
GPG key ID: 136F30F901A2231D

View file

@ -142,7 +142,6 @@ func PushMsg(msg string, timeout int) (msgId string) {
func PushErrMsg(msg string, timeout int) (msgId string) {
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})
return
}