diff --git a/android/app/src/main/kotlin/im/cwtch/flwtch/FlwtchWorker.kt b/android/app/src/main/kotlin/im/cwtch/flwtch/FlwtchWorker.kt index 4bdb87b5..5a71ea8b 100644 --- a/android/app/src/main/kotlin/im/cwtch/flwtch/FlwtchWorker.kt +++ b/android/app/src/main/kotlin/im/cwtch/flwtch/FlwtchWorker.kt @@ -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) ?: ""