1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-05-05 11:34:07 +02:00

Fix simultaneous popup notification order

Closes 
This commit is contained in:
chylex 2016-05-08 12:47:36 +02:00
parent 98197d1e86
commit 0b8205dc41

View File

@ -37,8 +37,8 @@
// Notification handling
$.subscribe("/notifications/new",function(obj){
for(var item of obj.items){
onNewTweet(obj.column,item);
for(let index = obj.items.length-1; index >= 0; index--){
onNewTweet(obj.column,obj.items[index]);
}
});