Fix messages never being notified from servers without MAM (#432)

* Comment a return that stop every notifications to be trigger when an account is not synced

* Do a correct check if MAM capability is available for the message to notify
This commit is contained in:
PapsOu 2018-10-24 17:48:29 +02:00 committed by fiaxh
parent ab7cd67851
commit 4ad07fea47
1 changed files with 2 additions and 1 deletions

View File

@ -44,7 +44,8 @@ public class NotificationEvents : StreamInteractionModule, Object {
}
private void on_message_received(Entities.Message message, Conversation conversation) {
if (!synced_accounts.contains(conversation.account)) {
bool is_mam_message = Xep.MessageArchiveManagement.MessageFlag.get_flag(message.stanza) != null;
if (!synced_accounts.contains(conversation.account) && is_mam_message) {
if (!mam_potential_new.has_key(conversation.account)) {
mam_potential_new[conversation.account] = new HashMap<Conversation, Entities.Message>(Conversation.hash_func, Conversation.equals_func);
}