1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-02-14 17:12:00 +00:00

Merge pull request #589 from trezor/fix-bridge-url

Fix connect dev server url and bridge download link
This commit is contained in:
Maroš 2019-07-25 17:35:22 +02:00 committed by GitHub
commit cbb45de387
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -160,7 +160,7 @@ export const init = (): AsyncAction => async (
if (buildUtils.isDev()) {
// eslint-disable-next-line
window.__TREZOR_CONNECT_SRC =
typeof LOCAL === 'string' ? LOCAL : 'https://sisyfos.trezor.io/connect/'; // eslint-disable-line no-underscore-dangle
typeof LOCAL === 'string' ? LOCAL : 'https://sisyfos.sldev.cz/connect/'; // eslint-disable-line no-underscore-dangle
// window.__TREZOR_CONNECT_SRC = typeof LOCAL === 'string' ? LOCAL : 'https://localhost:8088/'; // eslint-disable-line no-underscore-dangle
window.TrezorConnect = TrezorConnect;
}

View File

@ -134,7 +134,7 @@ class InstallBridge extends PureComponent<Props, State> {
latestVersion: props.transport.bridge.version.join('.'),
installers,
target: currentTarget || installers[0],
uri: 'https://data.trezor.io/',
uri: 'https://wallet.trezor.io/data/',
};
}