From 47c2d4633d1efcd716c8eb230ac1d6089d499120 Mon Sep 17 00:00:00 2001 From: infinite-persistence Date: Fri, 9 Apr 2021 18:45:52 +0800 Subject: [PATCH] ReportCreate: Fix anonymous url prefix ## Issue 5857 Channel does not update on display when reposting (but actually does) --- ui/component/repostCreate/view.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/component/repostCreate/view.jsx b/ui/component/repostCreate/view.jsx index dfda5ae04..2c56a3669 100644 --- a/ui/component/repostCreate/view.jsx +++ b/ui/component/repostCreate/view.jsx @@ -85,7 +85,7 @@ function RepostCreate(props: Props) { const { replace, goBack } = useHistory(); const resolvingRepost = isResolvingEnteredRepost || isResolvingPassedRepost; - const repostUrlName = `lbry://${!activeChannelClaim ? '' : `${activeChannelClaim.name}/`}`; + const repostUrlName = `lbry://${incognito || !activeChannelClaim ? '' : `${activeChannelClaim.name}/`}`; const contentFirstRender = React.useRef(true); const setAutoRepostBid = amount => {