mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-19 06:46:09 +01:00
♻️ Implement some delayed kernel events using task queues https://github.com/siyuan-note/siyuan/issues/12393
This commit is contained in:
parent
50adf9751b
commit
ffe737f55c
3 changed files with 7 additions and 9 deletions
|
|
@ -30,6 +30,7 @@ import (
|
|||
"github.com/88250/lute/ast"
|
||||
"github.com/siyuan-note/filelock"
|
||||
"github.com/siyuan-note/logging"
|
||||
"github.com/siyuan-note/siyuan/kernel/task"
|
||||
"github.com/siyuan-note/siyuan/kernel/util"
|
||||
)
|
||||
|
||||
|
|
@ -218,10 +219,8 @@ func Mount(boxID string) (alreadyMount bool, err error) {
|
|||
Conf.Save()
|
||||
}
|
||||
|
||||
task.AppendTaskWithDelay(task.PushMsg, 3*time.Second, util.PushErrMsg, Conf.Language(52), 7000)
|
||||
go func() {
|
||||
time.Sleep(time.Second * 3)
|
||||
util.PushErrMsg(Conf.Language(52), 7000)
|
||||
|
||||
// 每次打开帮助文档时自动检查版本更新并提醒 https://github.com/siyuan-note/siyuan/issues/5057
|
||||
time.Sleep(time.Second * 10)
|
||||
CheckUpdate(true)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue