mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-05-23 20:34:07 +02:00
parent
98197d1e86
commit
0b8205dc41
@ -37,8 +37,8 @@
|
|||||||
|
|
||||||
// Notification handling
|
// Notification handling
|
||||||
$.subscribe("/notifications/new",function(obj){
|
$.subscribe("/notifications/new",function(obj){
|
||||||
for(var item of obj.items){
|
for(let index = obj.items.length-1; index >= 0; index--){
|
||||||
onNewTweet(obj.column,item);
|
onNewTweet(obj.column,obj.items[index]);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user