From 2d085e948f353e3080b18d2d5452eb424fba042e Mon Sep 17 00:00:00 2001 From: ashneverdawn <8341280+ashneverdawn@users.noreply.github.com> Date: Mon, 6 Jan 2025 11:25:35 -0400 Subject: [PATCH] remove icon/banner from sign/verify --- extensions/warp-ipfs/src/store/conversation.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/extensions/warp-ipfs/src/store/conversation.rs b/extensions/warp-ipfs/src/store/conversation.rs index 6b65bb05f..0ad1c74eb 100644 --- a/extensions/warp-ipfs/src/store/conversation.rs +++ b/extensions/warp-ipfs/src/store/conversation.rs @@ -273,8 +273,6 @@ impl ConversationDocument { .iter() .flat_map(|rec| rec.to_string().as_bytes().to_vec()), )), - self.icon.map(|s| s.hash().digest().to_vec()), - self.banner.map(|s| s.hash().digest().to_vec()), ] .into_iter(), None, @@ -313,8 +311,6 @@ impl ConversationDocument { .iter() .flat_map(|rec| rec.to_string().as_bytes().to_vec()), )), - self.icon.map(|s| s.hash().digest().to_vec()), - self.banner.map(|s| s.hash().digest().to_vec()), ] .into_iter(), None,