Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
Vanessa 2022-10-30 23:18:46 +08:00
commit 5e7a68888b
2 changed files with 7 additions and 1 deletions

View file

@ -204,7 +204,7 @@ func setSearch(c *gin.Context) {
}
if 1 > s.Limit {
s.Limit = 32
s.Limit = 64
}
oldCaseSensitive := model.Conf.Search.CaseSensitive

View file

@ -257,10 +257,16 @@ func InitConf() {
if 1 > Conf.Editor.HistoryRetentionDays {
Conf.Editor.HistoryRetentionDays = 7
}
if 1 > Conf.Editor.DynamicLoadBlocks {
Conf.Editor.DynamicLoadBlocks = 128
}
if nil == Conf.Search {
Conf.Search = conf.NewSearch()
}
if 1 > Conf.Search.Limit {
Conf.Search.Limit = 64
}
if nil == Conf.Stat {
Conf.Stat = conf.NewStat()