From e52e5e1412720555dd1b1f632703db78a0fc94db Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Wed, 4 Oct 2023 10:50:41 +0800 Subject: [PATCH] :art: The default number of dynamically loaded blocks is adjusted from 128 to 192 --- kernel/model/conf.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/model/conf.go b/kernel/model/conf.go index 3b0e6444e..e94254d50 100644 --- a/kernel/model/conf.go +++ b/kernel/model/conf.go @@ -199,7 +199,7 @@ func InitConf() { Conf.Editor.Emoji = []string{} } if 1 > Conf.Editor.BlockRefDynamicAnchorTextMaxLen { - Conf.Editor.BlockRefDynamicAnchorTextMaxLen = 64 + Conf.Editor.BlockRefDynamicAnchorTextMaxLen = 192 } if 5120 < Conf.Editor.BlockRefDynamicAnchorTextMaxLen { Conf.Editor.BlockRefDynamicAnchorTextMaxLen = 5120