This commit is contained in:
fmodf 2024-08-17 19:37:19 +02:00
parent 0029e432d2
commit f972de1c9a

View file

@ -80,17 +80,11 @@ extension ConversationStore {
} }
func sendContact(_ jidStr: String) async { func sendContact(_ jidStr: String) async {
print("contact!", jidStr) await sendMessage("contact:\(jidStr)")
//
//
//
} }
func sendLocation(_ lat: Double, _ lon: Double) async { func sendLocation(_ lat: Double, _ lon: Double) async {
print("location!", lat, lon) await sendMessage("geo:\(lat),\(lon)")
//
//
//
} }
} }