🎨 改进多设备同时同步数据的可靠性 https://github.com/siyuan-note/siyuan/issues/7245

This commit is contained in:
Liang Ding 2023-02-03 17:18:38 +08:00
parent 6e8a4bbf71
commit 85771e1a45
No known key found for this signature in database
GPG key ID: 136F30F901A2231D
10 changed files with 48 additions and 13 deletions

View file

@ -437,6 +437,10 @@ func formatErrorMsg(err error) string {
msg = Conf.Language(28)
} else if strings.Contains(msgLowerCase, "cloud object not found") {
msg = Conf.Language(129)
} else if strings.Contains(msgLowerCase, "lock cloud repo failed") {
msg = Conf.Language(188)
} else if strings.Contains(msgLowerCase, "cloud repo is locked") {
msg = Conf.Language(189)
}
msg = msg + " v" + util.Ver
return msg