bugfix: 0-index, duh

Tento commit je obsažen v:
AJ ONeal 2018-09-05 13:33:01 -06:00
rodič 4870cd1ee0
revize 45386c2649

Zobrazit soubor

@ -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');