aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/webtorrent.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/lib/webtorrent.js')
-rw-r--r--server/lib/webtorrent.js9
1 files changed, 4 insertions, 5 deletions
diff --git a/server/lib/webtorrent.js b/server/lib/webtorrent.js
index bcd30139e..2090b792b 100644
--- a/server/lib/webtorrent.js
+++ b/server/lib/webtorrent.js
@@ -1,15 +1,14 @@
1'use strict' 1'use strict'
2 2
3const config = require('config')
4const ipc = require('node-ipc') 3const ipc = require('node-ipc')
5const pathUtils = require('path') 4const pathUtils = require('path')
6const spawn = require('electron-spawn') 5const spawn = require('electron-spawn')
7 6
7const constants = require('../initializers/constants')
8const logger = require('../helpers/logger') 8const logger = require('../helpers/logger')
9 9
10const electronDebug = config.get('electron.debug') 10let host = constants.CONFIG.WEBSERVER.HOST
11let host = config.get('webserver.host') 11let port = constants.CONFIG.WEBSERVER.PORT
12let port = config.get('webserver.port')
13let nodeKey = 'webtorrentnode' + port 12let nodeKey = 'webtorrentnode' + port
14let processKey = 'webtorrentprocess' + port 13let processKey = 'webtorrentprocess' + port
15ipc.config.silent = true 14ipc.config.silent = true
@@ -59,7 +58,7 @@ function create (options, callback) {
59 58
60 const webtorrentProcess = spawn(pathUtils.join(__dirname, 'webtorrent-process.js'), host, port, { detached: true }) 59 const webtorrentProcess = spawn(pathUtils.join(__dirname, 'webtorrent-process.js'), host, port, { detached: true })
61 60
62 if (electronDebug === true) { 61 if (constants.CONFIG.ELECTRON.DEBUG === true) {
63 webtorrentProcess.stderr.on('data', function (data) { 62 webtorrentProcess.stderr.on('data', function (data) {
64 logger.debug('Webtorrent process stderr: ', data.toString()) 63 logger.debug('Webtorrent process stderr: ', data.toString())
65 }) 64 })