1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-04-22 18:15:47 +02:00

Fix DM notifications not showing if the conversation is open

This commit is contained in:
chylex 2017-05-16 20:23:08 +02:00
parent 39ae9b8ba0
commit 4c5f5e2cce

View File

@ -661,6 +661,17 @@
}, 100);
});
//
// Block: Fix DM notifications not showing if the conversation is open.
//
(function(prevFunc){
TD.services.TwitterConversation.prototype.getUnreadChirps = function(e){
return (e && e.sortIndex && !e.id && !this.notificationsDisabled)
? this.messages.filter(t => t.chirpType === TD.services.ChirpBase.MESSAGE && !t.isOwnChirp() && !t.read && !t.belongsBelow(e)) // changed from belongsAbove
: prevFunc.apply(this, arguments);
};
})(TD.services.TwitterConversation.prototype.getUnreadChirps);
//
// Block: Disable TweetDeck metrics.
//