Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
6fa1736321 | |||
890438ffe9 | |||
ebf6f2577a |
@ -98,7 +98,7 @@ I2PProcessService.prototype =
|
|||||||
this._isConsoleRunning(function(res) {
|
this._isConsoleRunning(function(res) {
|
||||||
if (res!=4) {
|
if (res!=4) {
|
||||||
// Yes, 4 is success
|
// Yes, 4 is success
|
||||||
let canStartPromise = this._config_checker.ensure_config()
|
let canStartPromise = self._config_checker.ensure_config()
|
||||||
canStartPromise.then(() => {
|
canStartPromise.then(() => {
|
||||||
self._logger.log(3, 'Starting the router')
|
self._logger.log(3, 'Starting the router')
|
||||||
self.I2PStartAndControlI2P(true)
|
self.I2PStartAndControlI2P(true)
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<em:name>I2pbutton</em:name>
|
<em:name>I2pbutton</em:name>
|
||||||
<em:creator>Meeh, Mikal Villa</em:creator>
|
<em:creator>Meeh, Mikal Villa</em:creator>
|
||||||
<em:id>i2pbutton@geti2p.net</em:id>
|
<em:id>i2pbutton@geti2p.net</em:id>
|
||||||
<em:version>0.3.1</em:version>
|
<em:version>0.3.2</em:version>
|
||||||
<em:multiprocessCompatible>true</em:multiprocessCompatible>
|
<em:multiprocessCompatible>true</em:multiprocessCompatible>
|
||||||
<em:homepageURL>https://geti2p.net/en/download/lab</em:homepageURL>
|
<em:homepageURL>https://geti2p.net/en/download/lab</em:homepageURL>
|
||||||
<em:iconURL>chrome://i2pbutton/skin/i2p.png</em:iconURL>
|
<em:iconURL>chrome://i2pbutton/skin/i2p.png</em:iconURL>
|
||||||
|
@ -290,18 +290,17 @@ const LauncherUtil = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
i2pFile = LauncherUtilInternal._appDir.clone()
|
|
||||||
try {
|
try {
|
||||||
|
|
||||||
// Turn 'path' into an absolute path.
|
// Turn 'path' into an absolute path.
|
||||||
i2pFile = LauncherUtilInternal._appDir.clone()
|
i2pFile = LauncherUtilInternal._appDir.clone()
|
||||||
if (this.isMac) {
|
if (!this.isMac) {
|
||||||
i2pFile.append("I2PBrowser")
|
|
||||||
} else {
|
|
||||||
let lnxpath = i2pFile.clone()
|
let lnxpath = i2pFile.clone()
|
||||||
lnxpath.append(path)
|
lnxpath.append(path)
|
||||||
return lnxpath
|
return lnxpath
|
||||||
}
|
}
|
||||||
|
//i2pFile.appendRelativePath(path)
|
||||||
|
logger.log(2, `getI2PFile - Path before append: ${i2pFile.path}`)
|
||||||
i2pFile.appendRelativePath(path)
|
i2pFile.appendRelativePath(path)
|
||||||
logger.log(2, `getI2PFile - Gonna try path ${i2pFile.path}`)
|
logger.log(2, `getI2PFile - Gonna try path ${i2pFile.path}`)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user