Fix Android Delete Contact API #158

Merged
erinn merged 1 commits from archive into trunk 2021-08-27 21:28:37 +00:00
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ class FlwtchWorker(context: Context, parameters: WorkerParameters) :
"DeleteContact" -> {
val profile = (a.get("ProfileOnion") as? String) ?: ""
val handle = (a.get("handle") as? String) ?: ""
Cwtch.deleteConversation(profile, handle)
Cwtch.deleteContact(profile, handle)
}
"RejectInvite" -> {
val profile = (a.get("ProfileOnion") as? String) ?: ""