summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrant Shangreaux <shshoshin@protonmail.com>2020-05-03 12:52:33 -0500
committerGrant Shangreaux <shshoshin@protonmail.com>2020-05-03 12:52:33 -0500
commit1fa6b622145975a38fea265155d53eb37634b8fc (patch)
tree1a2107694ce2ecfbab002f3ccaf5fc6af53cde8f
parented2140fd7bb70c320c9040c3089534c671cb9c89 (diff)
Clean: remove shared secret from storing in hardcopyHEADmain
-rw-r--r--adminbot.asd2
-rw-r--r--adminbot.lisp3
2 files changed, 2 insertions, 3 deletions
diff --git a/adminbot.asd b/adminbot.asd
index 2b7d468..7c26405 100644
--- a/adminbot.asd
+++ b/adminbot.asd
@@ -4,7 +4,7 @@
:description "A Matrix bot to do admin tasks."
:author "Shoshin <shshoshin@protonmail.com>"
:license "AGPL"
- :version "0.1.0"
+ :version "0.1.1"
:serial t
:depends-on (#:granolin #:ironclad #:cl-ppcre)
:components ((:file "package")
diff --git a/adminbot.lisp b/adminbot.lisp
index 300d13b..dfbbb46 100644
--- a/adminbot.lisp
+++ b/adminbot.lisp
@@ -16,8 +16,7 @@
(defvar *adminbot* nil)
(defmethod hardcopy-plist append ((bot adminbot))
- (list 'registration-shared-secret (registration-shared-secret bot)
- 'known-users (known-users bot)))
+ (list 'known-users (known-users bot)))
(defun add-to-known-users (username client)
(push username (known-users client)))