Parcourir la source

This.core.registerActionGroup is not a function [fixes #1438]

Sebastián Katzer il y a 8 ans
Parent
commit
8e8bc0b8f8
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      www/local-notification.js

+ 1 - 1
www/local-notification.js

@@ -266,7 +266,7 @@ exports.getTriggered = function (callback, scope) {
  * @return [ Void ]
  */
 exports.addActionGroup = function (id, actions, callback, scope) {
-    this.core.registerActionGroup(id, actions, callback, scope);
+    this.core.addActionGroup(id, actions, callback, scope);
 };
 
 /**