|
@@ -15,7 +15,6 @@ import (
|
|
|
"net/http"
|
|
|
"net/url"
|
|
|
"regexp"
|
|
|
- "sort"
|
|
|
"strconv"
|
|
|
"strings"
|
|
|
"time"
|
|
@@ -597,8 +596,8 @@ func DelRepeatSearchData(resOne, resTwo []*bxcore.SearchList) []*bxcore.SearchLi
|
|
|
}
|
|
|
resOne = append(resOne, resTwo...)
|
|
|
}
|
|
|
- sort.Slice(resOne, func(i, j int) bool {
|
|
|
- return resOne[i].PublishTime > resOne[j].PublishTime
|
|
|
- })
|
|
|
+ //sort.Slice(resOne, func(i, j int) bool {
|
|
|
+ // return resOne[i].PublishTime > resOne[j].PublishTime
|
|
|
+ //})
|
|
|
return resOne
|
|
|
}
|