diff --git a/crates/chat/src/room.rs b/crates/chat/src/room.rs index 3aa897c..690fad8 100644 --- a/crates/chat/src/room.rs +++ b/crates/chat/src/room.rs @@ -602,7 +602,8 @@ async fn send_gift_wrap( where T: NostrSigner + 'static, { - let mut extra_tags = vec![]; + let k_tag = Tag::custom(TagKind::k(), vec!["14"]); + let mut extra_tags = vec![k_tag]; // Determine the receiver public key based on the config let receiver = match config {