Merge pull request #6616 from MetaMask/develop

Update master for 6.5.2 production release
feature/default_network_editable
Thomas Huang 6 years ago committed by GitHub
commit 3d7bdd6ecb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      CHANGELOG.md
  2. 2
      app/manifest.json
  3. 2
      app/scripts/metamask-controller.js
  4. 2
      ui/lib/account-link.js

@ -2,6 +2,9 @@
## Current Develop Branch ## Current Develop Branch
## 6.5.2 Wed May 15 2019
- [#6613](https://github.com/MetaMask/metamask-extension/pull/6613): Hardware Wallet Fix
## 6.5.1 Tue May 14 2019 ## 6.5.1 Tue May 14 2019
- Fix bug where approve method would show a warning. #6602 - Fix bug where approve method would show a warning. #6602

@ -1,7 +1,7 @@
{ {
"name": "__MSG_appName__", "name": "__MSG_appName__",
"short_name": "__MSG_appName__", "short_name": "__MSG_appName__",
"version": "6.5.1", "version": "6.5.2",
"manifest_version": 2, "manifest_version": 2,
"author": "https://metamask.io", "author": "https://metamask.io",
"description": "__MSG_appDescription__", "description": "__MSG_appDescription__",

@ -343,7 +343,7 @@ module.exports = class MetamaskController extends EventEmitter {
updatePublicConfigStore(this.getState()) updatePublicConfigStore(this.getState())
publicConfigStore.destroy = () => { publicConfigStore.destroy = () => {
this.removeEventListener('update', updatePublicConfigStore) this.removeEventListener && this.removeEventListener('update', updatePublicConfigStore)
} }
function updatePublicConfigStore (memState) { function updatePublicConfigStore (memState) {

@ -1,5 +1,5 @@
module.exports = function (address, network, rpcPrefs) { module.exports = function (address, network, rpcPrefs) {
if (rpcPrefs.blockExplorerUrl) { if (rpcPrefs && rpcPrefs.blockExplorerUrl) {
return `${rpcPrefs.blockExplorerUrl}/address/${address}` return `${rpcPrefs.blockExplorerUrl}/address/${address}`
} }

Loading…
Cancel
Save