#1624 Update error message for invalid intent action for external story share.

This commit is contained in:
Andrei 2022-05-14 13:03:19 -07:00
parent de5b7c02ea
commit b332562dd9

View file

@ -32,7 +32,7 @@ class ShareExternalStoryActivity : AppCompatActivity() {
if (intent.action == Intent.ACTION_SEND && intent.type == "text/plain") {
handleIntent()
} else {
finishWithToast("NewsBlur action unrecognized")
finishWithToast("NewsBlur invalid intent action!")
}
}