Преглед на файлове

Fix "Unknown property: autoClear" message

Sebastián Katzer преди 10 години
родител
ревизия
ae013ec018
променени са 1 файла, в които са добавени 3 реда и са изтрити 1 реда
  1. 3 1
      www/local-notification-util.js

+ 3 - 1
www/local-notification-util.js

@@ -87,7 +87,9 @@ exports.mergeWithDefaults = function (options) {
     options.text = this.getValueFor(options, 'text', 'message');
     options.data = this.getValueFor(options, 'data', 'json');
 
-    options.autoClear = this.getValueFor(options, 'autoClear', 'autoCancel');
+    if (defaults.hasOwnProperty('autoClear')) {
+        options.autoClear = this.getValueFor(options, 'autoClear', 'autoCancel');
+    }
 
     if (options.autoClear !== true && options.ongoing) {
         options.autoClear = false;