Fix crash on Android 9 when replying from notification (#1091)

This commit is contained in:
Konrad Pozniak 2019-03-01 21:06:48 +01:00 committed by GitHub
parent cfb744b08a
commit 754897ea9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -133,6 +133,8 @@ class SendStatusBroadcastReceiver : BroadcastReceiver() {
.replyingStatusContent(citedText)
.build(context)
composeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
context.startActivity(composeIntent)
}
}