فهرست منبع

Fall back in case of error in popup openOptions.

FelisCatus 8 سال پیش
والد
کامیت
7a3ac05cd5
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      omega-target-chromium-extension/omega_target_popup.js

+ 1 - 1
omega-target-chromium-extension/omega_target_popup.js

@@ -43,7 +43,7 @@ OmegaTargetPopup = {
     chrome.tabs.query({
     chrome.tabs.query({
       url: options_url
       url: options_url
     }, function(tabs) {
     }, function(tabs) {
-      if (tabs.length > 0) {
+      if (!chrome.runtime.lastError && tabs && tabs.length > 0) {
         var props = {
         var props = {
           active: true
           active: true
         };
         };