mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2026-01-30 06:10:55 +03:00
Fix error sending messages to closed popups
This commit is contained in:
@@ -27,7 +27,7 @@ const popupPort: Record<string, chrome.runtime.Port> = {};
|
|||||||
const contentScriptRegistrations = {};
|
const contentScriptRegistrations = {};
|
||||||
|
|
||||||
// Register content script if needed
|
// Register content script if needed
|
||||||
utils.wait(() => Config.config !== null).then(function() {
|
utils.wait(() => Config.isReady()).then(function() {
|
||||||
if (Config.config.supportInvidious) utils.setupExtraSiteContentScripts();
|
if (Config.config.supportInvidious) utils.setupExtraSiteContentScripts();
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -75,7 +75,11 @@ chrome.runtime.onMessage.addListener(function (request, sender, callback) {
|
|||||||
case "infoUpdated":
|
case "infoUpdated":
|
||||||
case "videoChanged":
|
case "videoChanged":
|
||||||
if (sender.tab) {
|
if (sender.tab) {
|
||||||
popupPort[sender.tab.id]?.postMessage(request);
|
try {
|
||||||
|
popupPort[sender.tab.id]?.postMessage(request);
|
||||||
|
} catch (e) {
|
||||||
|
// This can happen if the popup is closed
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
default:
|
default:
|
||||||
|
|||||||
Reference in New Issue
Block a user