mirror of
https://github.com/TakeV-Lambda/dino.git
synced 2024-11-23 07:24:35 +00:00
Revert "Fix notifications for servers without MAM"
This reverts commit 80b946c85c
.
This commit is contained in:
parent
ad16b18871
commit
32687d731f
1 changed files with 1 additions and 6 deletions
|
@ -44,12 +44,7 @@ public class NotificationEvents : StreamInteractionModule, Object {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void on_content_item_received(ContentItem item, Conversation conversation) {
|
private void on_content_item_received(ContentItem item, Conversation conversation) {
|
||||||
bool is_mam_message = true;
|
if (!synced_accounts.contains(conversation.account)) {
|
||||||
if (item.type_ == MessageItem.TYPE) {
|
|
||||||
// If this message is not for MAM, always notify
|
|
||||||
is_mam_message = Xep.MessageArchiveManagement.MessageFlag.get_flag((item as MessageItem).message.stanza) != null;
|
|
||||||
}
|
|
||||||
if (!synced_accounts.contains(conversation.account) && is_mam_message) {
|
|
||||||
if (!mam_potential_new.has_key(conversation.account)) {
|
if (!mam_potential_new.has_key(conversation.account)) {
|
||||||
mam_potential_new[conversation.account] = new HashMap<Conversation, ContentItem>(Conversation.hash_func, Conversation.equals_func);
|
mam_potential_new[conversation.account] = new HashMap<Conversation, ContentItem>(Conversation.hash_func, Conversation.equals_func);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue