mv-experiment #1

Merged
fmodf merged 88 commits from mv-experiment into develop 2024-09-03 15:13:59 +00:00
Showing only changes of commit f972de1c9a - Show all commits

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)")
//
//
//
} }
} }