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;
}