Skip to content

Commit 0388892

Browse files
committed
fix: correct variable name checkTor
1 parent 68162d2 commit 0388892

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,8 +290,8 @@ class SQLMapGenerator {
290290
const tor = document.getElementById('tor').checked;
291291
if (tor) config['--tor'] = tor;
292292

293-
const checTor = document.getElementById('checkTor').checked;
294-
if (checTor) config['--check-tor'] = checTor;
293+
const checkTor = document.getElementById('checkTor').checked;
294+
if (checkTor) config['--check-tor'] = checkTor;
295295

296296
const torPort = document.getElementById('torPort').value.trim();
297297
if (torPort) config['--tor-port'] = torPort;

0 commit comments

Comments
 (0)