From 3993b96e54780e5880bede9d603f297bd9b5fd70 Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Sat, 18 Mar 2023 17:38:58 +0800 Subject: [PATCH] =?UTF-8?q?:art:=20=E7=BC=96=E8=BE=91=E5=99=A8=E5=90=AF?= =?UTF-8?q?=E7=94=A8=E5=8F=AA=E8=AF=BB=E6=A8=A1=E5=BC=8F=E6=97=B6=E5=90=AF?= =?UTF-8?q?=E5=8A=A8=E5=90=8E=E6=8F=90=E7=A4=BA=E7=94=A8=E6=88=B7=20Fix=20?= =?UTF-8?q?https://github.com/siyuan-note/siyuan/issues/7700?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- kernel/api/system.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/api/system.go b/kernel/api/system.go index 332903dc4..f5808f7fc 100644 --- a/kernel/api/system.go +++ b/kernel/api/system.go @@ -168,7 +168,7 @@ func getConf(c *gin.Context) { if model.Conf.Editor.ReadOnly { // 编辑器启用只读模式时启动后提示用户 https://github.com/siyuan-note/siyuan/issues/7700 go func() { - time.Sleep(time.Second * 5) + time.Sleep(time.Second * 7) if model.Conf.Editor.ReadOnly { util.PushMsg(model.Conf.Language(197), 7000) }