update channel search too

This commit is contained in:
zeppi 2021-08-16 17:19:36 -04:00
parent 1628cca2c1
commit 137bc77d69

View file

@ -81,7 +81,7 @@ function ChannelContent(props: Props) {
!showMature ? '&nsfw=false&size=50&from=0' : ''
}`
)
.then((results) => {
.then(({ body: results }) => {
const urls = results.map(({ name, claimId }) => {
return `lbry://${name}#${claimId}`;
});