diff options
author | 2025-04-10 01:23:39 +0100 | |
---|---|---|
committer | 2025-04-10 01:23:39 +0100 | |
commit | 935b508a6dc42a41ea504a216cf199e67a48f75b (patch) | |
tree | 32e6ffae20ec6ba02ef2b08cffb6091f8b48fbd4 /filamento/src/user.rs | |
parent | 3abe88cd128b249f2038e13dbedcbd8341830126 (diff) | |
download | luz-935b508a6dc42a41ea504a216cf199e67a48f75b.tar.gz luz-935b508a6dc42a41ea504a216cf199e67a48f75b.tar.bz2 luz-935b508a6dc42a41ea504a216cf199e67a48f75b.zip |
fix(filamento): add `avatar` to `User` struct
Diffstat (limited to '')
-rw-r--r-- | filamento/src/user.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/filamento/src/user.rs b/filamento/src/user.rs index 85471d5..3d5dcb4 100644 --- a/filamento/src/user.rs +++ b/filamento/src/user.rs @@ -4,5 +4,6 @@ use jid::JID; pub struct User { pub jid: JID, pub nick: Option<String>, + pub avatar: Option<String>, pub cached_status_message: Option<String>, } |