Propagate group name on Android properly

This commit is contained in:
Sarah Jamie Lewis 2021-06-29 17:17:42 -07:00
parent 45459cf76a
commit 9c9ea38456
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ class FlwtchWorker(context: Context, parameters: WorkerParameters) :
"CreateGroup" -> { "CreateGroup" -> {
val profile = (a.get("ProfileOnion") as? String) ?: "" val profile = (a.get("ProfileOnion") as? String) ?: ""
val server = (a.get("server") as? String) ?: "" val server = (a.get("server") as? String) ?: ""
val groupName = (a.get("groupname") as? String) ?: "" val groupName = (a.get("groupName") as? String) ?: ""
Cwtch.createGroup(profile, server, groupName) Cwtch.createGroup(profile, server, groupName)
} }
"DeleteProfile" -> { "DeleteProfile" -> {