mirror of
https://codeberg.org/SafeTwitch/safetwitch-backend.git
synced 2024-12-22 13:13:00 -05:00
Fix missing pfps in search
This commit is contained in:
parent
f172fa42c3
commit
21765cf24e
1 changed files with 1 additions and 1 deletions
|
@ -488,7 +488,7 @@ func GetSearchResult(query string) (structs.SearchResult, error) {
|
||||||
Followers: int(streamer.Get("item.followers.totalCount").Int()),
|
Followers: int(streamer.Get("item.followers.totalCount").Int()),
|
||||||
IsLive: !(stream == ""),
|
IsLive: !(stream == ""),
|
||||||
About: streamer.Get("item.description").String(),
|
About: streamer.Get("item.description").String(),
|
||||||
Pfp: extractor.ProxyUrl(streamer.Get("item.prifileImageURL").String()),
|
Pfp: extractor.ProxyUrl(streamer.Get("item.profileImageURL").String()),
|
||||||
IsPartner: false,
|
IsPartner: false,
|
||||||
ColorHex: nil,
|
ColorHex: nil,
|
||||||
Id: streamer.Get("item.channel.id").String(),
|
Id: streamer.Get("item.channel.id").String(),
|
||||||
|
|
Loading…
Reference in a new issue