Fix Android Delete Contact API
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
Sarah Jamie Lewis 2021-08-27 14:25:08 -07:00
parent 7849deda95
commit 98363a11b6
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) ?: ""