|
|
@ -4386,8 +4386,9 @@ class Core {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (notify_reply && message.content &&
|
|
|
|
if (notify_reply && message.content) {
|
|
|
|
db.identity().getComposableIdentities(message.account).size() > 0) {
|
|
|
|
List<TupleIdentityEx> identities = db.identity().getComposableIdentities(message.account);
|
|
|
|
|
|
|
|
if (identities != null && identities.size() > 0) {
|
|
|
|
Intent reply = new Intent(context, ActivityCompose.class)
|
|
|
|
Intent reply = new Intent(context, ActivityCompose.class)
|
|
|
|
.putExtra("action", "reply")
|
|
|
|
.putExtra("action", "reply")
|
|
|
|
.putExtra("reference", message.id)
|
|
|
|
.putExtra("reference", message.id)
|
|
|
@ -4403,6 +4404,7 @@ class Core {
|
|
|
|
.setAllowGeneratedReplies(false);
|
|
|
|
.setAllowGeneratedReplies(false);
|
|
|
|
mbuilder.addAction(actionReply.build());
|
|
|
|
mbuilder.addAction(actionReply.build());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (notify_reply_direct &&
|
|
|
|
if (notify_reply_direct &&
|
|
|
|
message.content &&
|
|
|
|
message.content &&
|
|
|
|