mirror of https://github.com/xwiki-labs/cryptpad
Don't notify for old mailbox messages
This commit is contained in:
parent
ca065e557e
commit
59f427f1b5
|
@ -297,6 +297,7 @@ proxy.mailboxes = {
|
|||
msg: msg,
|
||||
hash: hash
|
||||
};
|
||||
var notify = box.ready;
|
||||
Handlers.add(ctx, box, message, function (dismissed, toDismiss) {
|
||||
if (toDismiss) { // List of other messages to remove
|
||||
dismiss(ctx, toDismiss, '', function () {
|
||||
|
@ -314,8 +315,7 @@ proxy.mailboxes = {
|
|||
}
|
||||
box.content[hash] = msg;
|
||||
showMessage(ctx, type, message, null, function (obj) {
|
||||
if (!box.ready) { return; }
|
||||
if (!obj || !obj.msg) { return; }
|
||||
if (!obj || !obj.msg || !notify) { return; }
|
||||
Notify.system(undefined, obj.msg);
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue