We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9b505f commit c3d4829Copy full SHA for c3d4829
main.js
@@ -10,6 +10,7 @@ function createWindow () {
10
webPreferences: {
11
devTools: true,
12
contextIsolation: false,
13
+ sandbox: true,
14
}
15
})
16
@@ -20,7 +21,7 @@ function createWindow () {
20
21
});
22
23
win.webContents.on('new-window', function(e, url) {
- if (url.startsWith('https://identity.bitclout.com')) {
24
+ if (url.startsWith('https://identity.bitclout.com/')) {
25
return;
26
27
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "BitClout",
3
- "version": "1.0.1",
+ "version": "1.0.2",
4
"description": "bitclout.com electron app",
5
"main": "main.js",
6
"scripts": {
0 commit comments