Skip to content

Commit

Permalink
Fix forkdelta.app (#1023)
Browse files Browse the repository at this point in the history
* bump react-native-web3-webview

* update package-lock.json

* fix forkdelta.app

* fix

* fix dep bs

* fix
  • Loading branch information
Bruno Barbieri authored Aug 26, 2019
1 parent bad5b0c commit 8b83cb5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ aliases:

- &install-node-dependencies
|
npm install
rm -rf node_modules/websocket/.git && npm install

defaults: &defaults
working_directory: ~/MetaMask
Expand Down
3 changes: 3 additions & 0 deletions app/components/Views/BrowserTab/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1190,6 +1190,9 @@ export class BrowserTab extends PureComponent {
const { ipfsGateway } = this.props;
const data = {};
const urlObj = new URL(url);
if (urlObj.protocol.indexOf('http') === -1) {
return;
}
this.lastUrlBeforeHome = null;

data.fullHostname = urlObj.hostname;
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
"react-native-tcp": "3.3.0",
"react-native-vector-icons": "6.4.2",
"react-native-view-shot": "github:brunobar79/react-native-view-shot#androidx",
"react-native-web3-webview": "2.1.0",
"react-native-web3-webview": "2.1.2",
"react-navigation": "3.11.1",
"react-redux": "5.1.1",
"readable-stream": "1.0.33",
Expand Down

0 comments on commit 8b83cb5

Please sign in to comment.