From f972de1c9adfeed9d873c27443a1e53c2b82a815 Mon Sep 17 00:00:00 2001 From: fmodf Date: Sat, 17 Aug 2024 19:37:19 +0200 Subject: [PATCH] wip --- .../AppData/Store/ConversationStore.swift | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) 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)") } }