🎨 改进内核任务调度机制提升稳定性 https://github.com/siyuan-note/siyuan/issues/7113

This commit is contained in:
Liang Ding 2023-01-18 23:00:30 +08:00
parent 98f682e507
commit 492389470f
No known key found for this signature in database
GPG key ID: 136F30F901A2231D
6 changed files with 181 additions and 38 deletions

View file

@ -113,11 +113,7 @@ func checkoutRepo(c *gin.Context) {
}
id := arg["id"].(string)
if err := model.CheckoutRepo(id); nil != err {
ret.Code = -1
ret.Msg = model.Conf.Language(141)
return
}
model.CheckoutRepo(id)
}
func downloadCloudSnapshot(c *gin.Context) {