aboutsummaryrefslogtreecommitdiff
path: root/lib/keyring/recipients.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/keyring/recipients.rb')
-rw-r--r--lib/keyring/recipients.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/keyring/recipients.rb b/lib/keyring/recipients.rb
index af3491e..338c93c 100644
--- a/lib/keyring/recipients.rb
+++ b/lib/keyring/recipients.rb
@@ -20,8 +20,9 @@
module Keyring
class Recipients
- def initialize(aBaseDirectory = '..')
- @recipientsStore = Backend::RecipientsStore.new(aBaseDirectory)
+ def initialize
+ path = UserConfig.instance.path
+ @recipientsStore = Backend::RecipientsStore.new(path)
end
def addRecipient(anEmail, aKeySignature)