1
0
mirror of https://git.sr.ht/~cadence/bibliogram synced 2026-01-10 07:11:14 +00:00

Allow customisation of tor port

This commit is contained in:
Cadence Ember
2021-09-28 16:23:52 +13:00
parent f14837be44
commit a807acc296
2 changed files with 3 additions and 2 deletions

View File

@@ -51,11 +51,11 @@ module.exports = new Promise(resolve => {
/** @type {import("@deadcanaries/granax/lib/controller")} */
// @ts-ignore
let tor
if (constants.tor.password == null) {
if (constants.tor.password == null || constants.tor.port == null) {
// @ts-ignore
tor = new granax()
} else {
tor = new granax.TorController(connect(9051), {authOnConnect: false})
tor = new granax.TorController(connect(constants.tor.port), {authOnConnect: false})
tor.authenticate(`"${constants.tor.password}"`, err => {
if (err) console.log("Tor auth error:", err)
})