From 137bc77d69ce2fdd8942cf2a7c18cdc0621767fa Mon Sep 17 00:00:00 2001 From: zeppi Date: Mon, 16 Aug 2021 17:19:36 -0400 Subject: [PATCH] update channel search too --- ui/component/channelContent/view.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/component/channelContent/view.jsx b/ui/component/channelContent/view.jsx index 3498e5799..c069428a5 100644 --- a/ui/component/channelContent/view.jsx +++ b/ui/component/channelContent/view.jsx @@ -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}`; });