@@ -209,8 +209,8 @@ func setSearch(c *gin.Context) {
return
}
- if 1 > s.Limit {
- s.Limit = 64
+ if 32 > s.Limit {
+ s.Limit = 32
oldCaseSensitive := model.Conf.Search.CaseSensitive
@@ -293,6 +293,9 @@ func InitConf() {
if 1 > Conf.Search.Limit {
Conf.Search.Limit = 64
+ if 32 > Conf.Search.Limit {
+ Conf.Search.Limit = 32
+ }
if 1 > Conf.Search.BacklinkMentionKeywordsLimit {
Conf.Search.BacklinkMentionKeywordsLimit = 512