From 38dbff0c1f8b74aefecd7b6378fefb5023d8e6a8 Mon Sep 17 00:00:00 2001 From: jessopb <36554050+jessopb@users.noreply.github.com> Date: Mon, 7 Oct 2019 13:30:58 -0400 Subject: [PATCH] Update view.jsx fixes share string missing slash --- src/ui/component/socialShare/view.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/component/socialShare/view.jsx b/src/ui/component/socialShare/view.jsx index 73fc04a7b..49d3a24d3 100644 --- a/src/ui/component/socialShare/view.jsx +++ b/src/ui/component/socialShare/view.jsx @@ -29,7 +29,7 @@ class SocialShare extends React.PureComponent { const { claim } = this.props; const { canonical_url: canonicalUrl, permanent_url: permanentUrl } = claim; const { speechShareable, onDone } = this.props; - const lbryTvPrefix = DOMAIN; + const lbryTvPrefix = `${DOMAIN}/`; const OPEN_URL = 'https://open.lbry.com/'; const lbryUrl = canonicalUrl ? canonicalUrl.split('lbry://')[1] : permanentUrl.split('lbry://')[1]; const lbryWebUrl = lbryUrl.replace(/#/g, ':');