Browse Source

Fix "unable to get property 'apply' of undefined or null reference"

Sebastián Katzer 10 năm trước cách đây
mục cha
commit
3e43e6ab23
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      src/windows/LocalNotificationUtil.js

+ 2 - 2
src/windows/LocalNotificationUtil.js

@@ -189,7 +189,7 @@ exports.buildToastTemplate = function (options) {
 		// template with Image
 		if (imageNode !== '') {
 			templateName = "ToastImageAndText";
-		};
+		}
 	} else {
 		imageNode = "";
 	}
@@ -390,7 +390,7 @@ exports.fireEvent = function (event, notification) {
         args = [event, state];
     }
 
-    if (this.isReady) {
+    if (this.isReady && plugin) {
         plugin.fireEvent.apply(plugin, args);
     } else {
         this.eventQueue.push(args);