diff --git a/dist/bundle.es.js b/dist/bundle.es.js index 57f1639..d1e7bdd 100644 --- a/dist/bundle.es.js +++ b/dist/bundle.es.js @@ -984,7 +984,7 @@ function isURIClaimable(URI) { function convertToShareLink(URI) { const { claimName, path, bidPosition, claimSequence, claimId } = parseURI(URI); - return buildURI({ claimName, path, claimSequence, bidPosition, claimId }, true, 'https://open.lbry.io/'); + return buildURI({ claimName, path, claimSequence, bidPosition, claimId }, true, 'https://open.lbry.com/'); } var _extends$1 = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; @@ -2400,7 +2400,7 @@ function handleFetchResponse(response) { const DEBOUNCED_SEARCH_SUGGESTION_MS = 300; // We can't use env's because they aren't passed into node_modules -let CONNECTION_STRING = 'https://lighthouse.lbry.io/'; +let CONNECTION_STRING = 'https://lighthouse.lbry.com/'; const setSearchApi = endpoint => { CONNECTION_STRING = endpoint.replace(/\/*$/, '/'); // exactly one slash at the end; diff --git a/package.json b/package.json index 4d15c96..21b595f 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "lbry" ], "license": "MIT", - "homepage": "https://lbry.io/", + "homepage": "https://lbry.com/", "bugs": { "url": "https://github.com/lbryio/lbry-redux/issues" }, @@ -16,7 +16,7 @@ }, "author": { "name": "LBRY Inc.", - "email": "hello@lbry.io" + "email": "hello@lbry.com" }, "main": "dist/bundle.es.js", "module": "dist/bundle.es.js", diff --git a/src/lbryURI.js b/src/lbryURI.js index 260df9a..fd07213 100644 --- a/src/lbryURI.js +++ b/src/lbryURI.js @@ -228,6 +228,6 @@ export function convertToShareLink(URI) { return buildURI( { claimName, path, claimSequence, bidPosition, claimId }, true, - 'https://open.lbry.io/' + 'https://open.lbry.com/' ); } diff --git a/src/redux/actions/search.js b/src/redux/actions/search.js index d81c592..6844a80 100644 --- a/src/redux/actions/search.js +++ b/src/redux/actions/search.js @@ -17,7 +17,7 @@ type Dispatch = (action: any) => any; type GetState = () => { search: SearchState }; // We can't use env's because they aren't passed into node_modules -let CONNECTION_STRING = 'https://lighthouse.lbry.io/'; +let CONNECTION_STRING = 'https://lighthouse.lbry.com/'; export const setSearchApi = (endpoint: string) => { CONNECTION_STRING = endpoint.replace(/\/*$/, '/'); // exactly one slash at the end;