summaryrefslogtreecommitdiffhomepage
path: root/Storage
diff options
context:
space:
mode:
authorJoey Hess <joeyh@joeyh.name>2016-09-01 11:43:01 -0400
committerJoey Hess <joeyh@joeyh.name>2016-09-01 11:43:01 -0400
commit3100ed23049f264e2fc43a02b8b65e7ce4578609 (patch)
treeab2cf2ce36b83893debc25ceffc769805c12c708 /Storage
parentf6931d56b182c0cac2e3551c4baec4352c5185da (diff)
downloadkeysafe-3100ed23049f264e2fc43a02b8b65e7ce4578609.tar.gz
Fix bug that prevented keysafe --server from running when there was no controlling terminal and zenity was not installed.
Diffstat (limited to 'Storage')
-rw-r--r--Storage/Network.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Storage/Network.hs b/Storage/Network.hs
index d16d693..ef6d86e 100644
--- a/Storage/Network.hs
+++ b/Storage/Network.hs
@@ -42,7 +42,7 @@ serverUrl srv = BaseUrl Http (serverName srv) (serverPort srv) ""
-- Using tor is highly recommended, to avoid correlation attacks.
networkServers :: IO [Server]
networkServers = return
- [ Server "localhost" 4242
+ [ Server "vzgrspuxbtnlrtup.onion" 4242 -- keysafe.joeyh.name
, Server "localhost" 4242
, Server "localhost" 4242
]