From 319809f8e548aece1e216c8947ce8b441a1f4c74 Mon Sep 17 00:00:00 2001 From: Akinwale Ariwodola Date: Tue, 15 Oct 2019 08:30:27 +0100 Subject: [PATCH] change beta.lbry.tv -> lbry.tv --- src/page/file/view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/page/file/view.js b/src/page/file/view.js index 7c30694..e95a022 100644 --- a/src/page/file/view.js +++ b/src/page/file/view.js @@ -517,7 +517,7 @@ class FilePage extends React.PureComponent { const { claim, notify } = this.props; if (claim) { const { canonical_url: canonicalUrl, short_url: shortUrl, permanent_url: permanentUrl } = claim; - const url = 'https://beta.lbry.tv' + this.formatLbryUrlForWeb(canonicalUrl || (shortUrl || permanentUrl)); + const url = 'https://lbry.tv' + this.formatLbryUrlForWeb(canonicalUrl || shortUrl || permanentUrl); NativeModules.UtilityModule.shareUrl(url); } };