Skip to content

Commit a3e2eae

Browse files
committed
Object.create(null) not Object.create({})
1 parent 2e036e6 commit a3e2eae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/containers/tw-security-manager.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ let allowedVideo = false;
111111
let allowedReadClipboard = false;
112112
let allowedNotify = false;
113113
let allowedGeolocation = false;
114-
const notAllowedToAskUnsandbox = Object.create({});
114+
const notAllowedToAskUnsandbox = Object.create(null);
115115
let loadingExtensionsRemember = false;
116116
let rememberedExtensionInfo = {
117117
unsandboxed: false,

0 commit comments

Comments
 (0)