Bug came with 7fc01db0ac392d2c575e26100967637d523055d4. Solves #168
@@ -122,7 +122,9 @@ LocalNotification.prototype = {
*/
createCallbackFn: function (callbackFn, scope) {
return function () {
- callbackFn.apply(arguments, scope || this);
+ if (typeof callbackFn == 'function') {
+ callbackFn.apply(scope || this, arguments);
+ }
}
},