fix ctrl+click opening the link twice/thrice, closes #1094

This commit is contained in:
zadam
2020-06-10 00:10:27 +02:00
parent 212b719ee9
commit 2d92b4931a
8 changed files with 18 additions and 19 deletions

View File

@@ -25,7 +25,8 @@ function logError(message) {
if (ws && ws.readyState === 1) {
ws.send(JSON.stringify({
type: 'log-error',
error: message
error: message,
stack: new Error().stack
}));
}
}