lbry.io => lbry.com
This commit is contained in:
parent
c8126ab217
commit
231d51832a
4 changed files with 6 additions and 6 deletions
4
dist/bundle.es.js
vendored
4
dist/bundle.es.js
vendored
|
@ -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;
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -228,6 +228,6 @@ export function convertToShareLink(URI) {
|
|||
return buildURI(
|
||||
{ claimName, path, claimSequence, bidPosition, claimId },
|
||||
true,
|
||||
'https://open.lbry.io/'
|
||||
'https://open.lbry.com/'
|
||||
);
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue