Jelajahi Sumber

Improved performance for isScheduled for windows

Sebastián Katzer 10 tahun lalu
induk
melakukan
44e9768702
1 mengubah file dengan 3 tambahan dan 1 penghapusan
  1. 3 1
      src/windows/LocalNotificationCore.js

+ 3 - 1
src/windows/LocalNotificationCore.js

@@ -293,7 +293,9 @@ exports.core = {
      *      Local notification ID
      */
     isScheduled: function (id) {
-        return this.getScheduledIds().indexOf(id) > -1;
+        var toast = this.findToastById(id);
+
+        return toast && this.isToastScheduled(toast);
     },
 
     /**