mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
hotfix for #236 - chrome notif api not avail
This commit is contained in:
parent
01e63d41ed
commit
c04d33c6a5
@ -8,6 +8,9 @@ module.exports = {
|
|||||||
createMsgNotification: createMsgNotification,
|
createMsgNotification: createMsgNotification,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// guard for chrome bug https://github.com/MetaMask/metamask-plugin/issues/236
|
||||||
|
if (!chrome.notifications) return console.error('Chrome notifications API missing...')
|
||||||
|
|
||||||
// notification button press
|
// notification button press
|
||||||
chrome.notifications.onButtonClicked.addListener(function(notificationId, buttonIndex){
|
chrome.notifications.onButtonClicked.addListener(function(notificationId, buttonIndex){
|
||||||
var handlers = notificationHandlers[notificationId]
|
var handlers = notificationHandlers[notificationId]
|
||||||
@ -26,6 +29,8 @@ chrome.notifications.onClosed.addListener(function(notificationId){
|
|||||||
|
|
||||||
// creation helper
|
// creation helper
|
||||||
function createUnlockRequestNotification(opts){
|
function createUnlockRequestNotification(opts){
|
||||||
|
// guard for chrome bug https://github.com/MetaMask/metamask-plugin/issues/236
|
||||||
|
if (!chrome.notifications) return console.error('Chrome notifications API missing...')
|
||||||
var message = 'An Ethereum app has requested a signature. Please unlock your account.'
|
var message = 'An Ethereum app has requested a signature. Please unlock your account.'
|
||||||
|
|
||||||
var id = createId()
|
var id = createId()
|
||||||
@ -39,6 +44,8 @@ function createUnlockRequestNotification(opts){
|
|||||||
}
|
}
|
||||||
|
|
||||||
function createTxNotification(opts){
|
function createTxNotification(opts){
|
||||||
|
// guard for chrome bug https://github.com/MetaMask/metamask-plugin/issues/236
|
||||||
|
if (!chrome.notifications) return console.error('Chrome notifications API missing...')
|
||||||
var message = [
|
var message = [
|
||||||
'Submitted by '+opts.txParams.origin,
|
'Submitted by '+opts.txParams.origin,
|
||||||
'to: '+uiUtils.addressSummary(opts.txParams.to),
|
'to: '+uiUtils.addressSummary(opts.txParams.to),
|
||||||
@ -67,6 +74,8 @@ function createTxNotification(opts){
|
|||||||
}
|
}
|
||||||
|
|
||||||
function createMsgNotification(opts){
|
function createMsgNotification(opts){
|
||||||
|
// guard for chrome bug https://github.com/MetaMask/metamask-plugin/issues/236
|
||||||
|
if (!chrome.notifications) return console.error('Chrome notifications API missing...')
|
||||||
var message = [
|
var message = [
|
||||||
'Submitted by '+opts.msgParams.origin,
|
'Submitted by '+opts.msgParams.origin,
|
||||||
'to be signed by: '+uiUtils.addressSummary(opts.msgParams.from),
|
'to be signed by: '+uiUtils.addressSummary(opts.msgParams.from),
|
||||||
|
Loading…
Reference in New Issue
Block a user