From 935b508a6dc42a41ea504a216cf199e67a48f75b Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Thu, 10 Apr 2025 01:23:39 +0100 Subject: fix(filamento): add `avatar` to `User` struct --- filamento/src/user.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'filamento/src/user.rs') 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, + pub avatar: Option, pub cached_status_message: Option, } -- cgit