瀏覽代碼

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;