From 5b644e2dc8712d56931b410b9c46dae1ef36e691 Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Tue, 8 Apr 2025 10:38:18 +0100 Subject: feat(filamento): user avatar publishing and processing --- filamento/src/logic/connect.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'filamento/src/logic/connect.rs') diff --git a/filamento/src/logic/connect.rs b/filamento/src/logic/connect.rs index dc05448..37cdad5 100644 --- a/filamento/src/logic/connect.rs +++ b/filamento/src/logic/connect.rs @@ -5,12 +5,16 @@ use tracing::debug; use crate::{ Command, UpdateMessage, error::{ConnectionJobError, Error, RosterError}, + files::FileStore, presence::{Online, PresenceType}, }; use super::ClientLogic; -pub async fn handle_connect(logic: ClientLogic, connection: Connected) { +pub async fn handle_connect( + logic: ClientLogic, + connection: Connected, +) { let (send, recv) = oneshot::channel(); debug!("getting roster"); logic -- cgit