зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1392591 - browser.notifications.onClicked callback get erroneous second parameter r=robwu
Differential Revision: https://phabricator.services.mozilla.com/D43592 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
3f9a910ba6
Коммит
4bc6381510
|
@ -154,7 +154,7 @@ this.notifications = class extends ExtensionAPI {
|
|||
name: "notifications.onClicked",
|
||||
register: fire => {
|
||||
let listener = (event, notificationId) => {
|
||||
fire.async(notificationId, true);
|
||||
fire.async(notificationId);
|
||||
};
|
||||
|
||||
notificationsMap.on("clicked", listener);
|
||||
|
@ -169,7 +169,7 @@ this.notifications = class extends ExtensionAPI {
|
|||
name: "notifications.onShown",
|
||||
register: fire => {
|
||||
let listener = (event, notificationId) => {
|
||||
fire.async(notificationId, true);
|
||||
fire.async(notificationId);
|
||||
};
|
||||
|
||||
notificationsMap.on("shown", listener);
|
||||
|
|
Загрузка…
Ссылка в новой задаче