summaryrefslogtreecommitdiffstats
path: root/modules/indexer
diff options
context:
space:
mode:
Diffstat (limited to 'modules/indexer')
-rw-r--r--modules/indexer/code/elastic_search.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/indexer/code/elastic_search.go b/modules/indexer/code/elastic_search.go
index c9d604b694..130cd1430a 100644
--- a/modules/indexer/code/elastic_search.go
+++ b/modules/indexer/code/elastic_search.go
@@ -6,7 +6,6 @@ package code
import (
"context"
- "encoding/json"
"fmt"
"strconv"
"strings"
@@ -22,6 +21,7 @@ import (
"code.gitea.io/gitea/modules/timeutil"
"github.com/go-enry/go-enry/v2"
+ jsoniter "github.com/json-iterator/go"
"github.com/olivere/elastic/v7"
)
@@ -300,6 +300,7 @@ func convertResult(searchResult *elastic.SearchResult, kw string, pageSize int)
repoID, fileName := parseIndexerID(hit.Id)
var res = make(map[string]interface{})
+ json := jsoniter.ConfigCompatibleWithStandardLibrary
if err := json.Unmarshal(hit.Source, &res); err != nil {
return 0, nil, nil, err
}