diff --git a/ConversationsClassic/AppData/Store/ConversationStore.swift b/ConversationsClassic/AppData/Store/ConversationStore.swift index 17812aa..7adf0d9 100644 --- a/ConversationsClassic/AppData/Store/ConversationStore.swift +++ b/ConversationsClassic/AppData/Store/ConversationStore.swift @@ -80,17 +80,11 @@ extension ConversationStore { } func sendContact(_ jidStr: String) async { - print("contact!", jidStr) - // - // - // + await sendMessage("contact:\(jidStr)") } func sendLocation(_ lat: Double, _ lon: Double) async { - print("location!", lat, lon) - // - // - // + await sendMessage("geo:\(lat),\(lon)") } }