Merge pull request 'fix android invitations' (#291) from fixAndroidAttrInv into trunk
continuous-integration/drone/push Build is passing Details

Reviewed-on: #291
Reviewed-by: Sarah Jamie Lewis <sarah@openprivacy.ca>
This commit is contained in:
Sarah Jamie Lewis 2022-01-07 03:44:36 +00:00
commit 165c9a3c41
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ class FlwtchWorker(context: Context, parameters: WorkerParameters) :
"SendInvitation" -> {
val profile = (a.get("ProfileOnion") as? String) ?: ""
val conversation = a.getInt("conversation").toLong()
val target = a.getInt("conversation").toLong()
val target = a.getInt("target").toLong()
Cwtch.sendInvitation(profile, conversation, target)
}
"ShareFile" -> {