about summary refs log tree commit diff
path: root/indieauth/src
diff options
context:
space:
mode:
authorVika <vika@fireburn.ru>2024-08-18 00:30:15 +0300
committerVika <vika@fireburn.ru>2024-08-18 00:30:15 +0300
commite43313210269b8e48fe35b17ac416c9ba88ae4f3 (patch)
tree51941c5149351bb32260fb8cbd4293eed80563e0 /indieauth/src
parentcd8029a930b966225d0a57afb1ee29808fe2a409 (diff)
feat: logins!!
yes you can finally sign in

this is also supposed to show private posts intended for you!

maybe i can also reveal my email to those who sign in! :3
Diffstat (limited to 'indieauth/src')
-rw-r--r--indieauth/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/indieauth/src/lib.rs b/indieauth/src/lib.rs
index 96ddea4..40bba5a 100644
--- a/indieauth/src/lib.rs
+++ b/indieauth/src/lib.rs
@@ -989,7 +989,7 @@ impl std::error::Error for self::Error {}
 
 impl std::fmt::Display for self::Error {
     fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
-        write!(f, "IndieAuth error ({})", self.kind)?;
+        write!(f, "indieauth error: {}", self.kind)?;
         if let Some(msg) = self.msg.as_deref() {
             write!(f, ": {}", msg)?;
         }