mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 09:07:54 +01:00
Minor code review
Related issue: - https://github.com/uBlockOrigin/uBlock-issues/issues/1992
This commit is contained in:
parent
bba4732c6b
commit
60072e7996
1 changed files with 3 additions and 3 deletions
|
@ -864,9 +864,9 @@ vAPI.messaging = {
|
|||
const { origin, tab, url } = sender;
|
||||
portDetails.frameId = sender.frameId;
|
||||
portDetails.frameURL = url;
|
||||
portDetails.privileged =
|
||||
origin !== undefined && origin === this.PRIVILEGED_ORIGIN ||
|
||||
origin === undefined && url.startsWith(this.PRIVILEGED_ORIGIN);
|
||||
portDetails.privileged = origin !== undefined
|
||||
? origin === this.PRIVILEGED_ORIGIN
|
||||
: url.startsWith(this.PRIVILEGED_ORIGIN);
|
||||
if ( tab ) {
|
||||
portDetails.tabId = tab.id;
|
||||
portDetails.tabURL = tab.url;
|
||||
|
|
Loading…
Reference in a new issue