add signer support whem replying

This commit is contained in:
greenart7c3
2023-08-16 14:34:11 -03:00
parent 66b1e4b15d
commit b8e97525eb
@@ -580,12 +580,16 @@ fun ReplyReaction(
if (accountViewModel.isWriteable()) { if (accountViewModel.isWriteable()) {
onPress() onPress()
} else { } else {
scope.launch { if (PackageUtils.isAmberInstalled(context)) {
Toast.makeText( onPress()
context, } else {
context.getString(R.string.login_with_a_private_key_to_be_able_to_reply), scope.launch {
Toast.LENGTH_SHORT Toast.makeText(
).show() context,
context.getString(R.string.login_with_a_private_key_to_be_able_to_reply),
Toast.LENGTH_SHORT
).show()
}
} }
} }
} }