1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-04 16:47:15 +02:00

Just to be sure no race condition

Related commit:
- d1f8a05d2d
This commit is contained in:
Raymond Hill 2022-10-27 16:28:55 -04:00
parent 545bb0787b
commit d992824625
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -91,7 +91,8 @@ const contentscriptCode = (( ) => {
function(hostname, scriptlets) {
if (
document.location === null ||
hostname !== document.location.hostname
hostname !== document.location.hostname ||
typeof self.uBO_scriptletsInjected === 'boolean'
) {
return;
}