1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-08 05:57:02 +09:00

JS-4480: fix

This commit is contained in:
Andrew Simachev 2024-04-30 16:55:15 +02:00
parent 9c1fef6cab
commit 5dc058c83f
No known key found for this signature in database
GPG key ID: 49A163D0D14E6FD8

View file

@ -168,7 +168,7 @@ app.on('second-instance', (event, argv) => {
Util.log('info', 'second-instance');
if (!is.macos) {
deeplinkingUrl = argv.find((arg) => arg.startsWith(`${protocol}://`));
deeplinkingUrl = argv.find(arg => arg.startsWith(`${protocol}://`));
};
if (!mainWindow || !deeplinkingUrl) {