chiark
/
gitweb
/
~ian
/
mastodonochrome.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
266ac16
)
Remove unneeded Auth::fqaccount() method.
author
Simon Tatham
<anakin@pobox.com>
Wed, 17 Jan 2024 12:34:12 +0000
(12:34 +0000)
committer
Simon Tatham
<anakin@pobox.com>
Wed, 17 Jan 2024 12:34:12 +0000
(12:34 +0000)
I never ended up using it, preferring Client::our_account_fq().
src/auth.rs
patch
|
blob
|
history
diff --git
a/src/auth.rs
b/src/auth.rs
index 8f1a009e0a09e6b7827fe78d68944fe5538b27c2..4a9215f40b5bec4f6dce976494d66ada6ae3b9ca 100644
(file)
--- a/
src/auth.rs
+++ b/
src/auth.rs
@@
-58,8
+58,4
@@
impl AuthConfig {
}?;
Ok(auth)
}
-
- pub fn fqaccount(&self) -> String {
- self.username.to_owned() + "@" + &self.instance_domain
- }
}