1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00

Fix Etherscan redirect on notification click (#9211)

This commit is contained in:
Patryk Łucka 2020-08-13 18:21:31 +02:00 committed by Mark Stacey
parent 4d499cc39e
commit 74decc3407

View File

@ -223,7 +223,7 @@ export default class ExtensionPlatform {
}
_viewOnEtherscan (txId) {
if (txId.startsWith('http://')) {
if (txId.startsWith('https://')) {
extension.tabs.create({ url: txId })
}
}