Remove useless comment, and extra whitespace

This commit is contained in:
Anthony Lavado 2019-12-20 04:45:51 -05:00
parent 5a15d2ee6f
commit 1960b4ea11

View File

@ -25,7 +25,6 @@ let MaxKeepLogLines = 200
@objc init(path: String, delegate: DaemonProcessDelegate) {
self.path = path
//self.path = "/Users/anthonylavado/Library/Application Support/jellyfin-server/Server/jellyfin"
self.delegate = delegate
}
@ -52,11 +51,9 @@ let MaxKeepLogLines = 200
private func launchServer() {
NSLog("Launching Jellyfin Server")
shouldTerminate = false
let p = Process()
p.arguments = ["--noautorunwebapp"] //, "--ffmpeg"]
p.launchPath = path
p.standardInput = Pipe() // isolate daemon from our stdin
p.standardOutput = pipeIntoLineBuffer()
p.standardError = pipeIntoLineBuffer()