fix: enable watchtower on iOS with --wtclient.active flag

This commit is contained in:
ajaysehwal
2025-08-20 00:25:09 +05:30
parent 63db2fa5cf
commit 48c2b8cb3d
+1 -1
View File
@@ -196,7 +196,7 @@ open class Lnd {
let applicationSupport = FileManager.default.urls(for: .applicationSupportDirectory, in: .userDomainMask)[0]
let lndPath = applicationSupport.appendingPathComponent(lndDir, isDirectory: true)
var lndArgs = "--nolisten --lnddir=\"\(lndPath.path)\" " + args
var lndArgs = "--nolisten --lnddir=\"\(lndPath.path)\" --wtclient.active" + args
if (isTorEnabled) {
lndArgs += " --tor.active"
}