bugfix: 0-index, duh

This commit is contained in:
AJ ONeal 2018-09-05 13:33:01 -06:00
parent 02a53f681f
commit 32f969cb18
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
'use strict';
// node telebit daemon arg1 arg2
if ('daemon' === process.argv[3]) {
if ('daemon' === process.argv[2]) {
require('./telebitd.js');
} else {
require('./telebit-remote.js');