1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-28 11:00:38 +12:00

Fix messaging for Safari

This commit is contained in:
Deathamns 2014-11-07 12:59:01 +01:00 committed by gorhill
parent 08247fb5dd
commit a39572448d

View file

@ -121,7 +121,8 @@ if (self.chrome) {
// messages from the background script are sent to every frame,
// so we need to check the connectorId to accept only
// what is meant for the current context
if (msg.name === vAPI.messaging.connectorId) {
if (msg.name === vAPI.messaging.connectorId
|| msg.name === 'broadcast') {
vAPI.messaging.connector(msg.message);
}
};