Skip to content
Snippets Groups Projects
Commit 773b3e45 authored by rswindell's avatar rswindell
Browse files

Fix bug cause install() to run for every poll. JS, you're far too liberal

in your accepted syntax.
parent 8a22ef01
No related branches found
No related tags found
No related merge requests found
......@@ -1052,7 +1052,7 @@ var addr;
if (sock !== undefined && sock.descriptor !== -1)
run_inbound(sock);
else {
if (argv.indexOf('install' !== -1)) {
if (argv.indexOf('install') !== -1) {
var result = install();
if (result != true) {
alert(result);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment