Pārlūkot izejas kodu

Check for empty "last_status" before sorting DM column (#9207)

* Check for empty "last_status" before sorting

* Small touchups for codeclimate
master
Steven Tappert pirms 5 gadiem
committed by Eugen Rochko
vecāks
revīzija
a7e3bd0300
1 mainītis faili ar 7 papildinājumiem un 1 dzēšanām
  1. +7
    -1
      app/javascript/mastodon/reducers/conversations.js

+ 7
- 1
app/javascript/mastodon/reducers/conversations.js Parādīt failu

@@ -56,7 +56,13 @@ const expandNormalizedConversations = (state, conversations, next) => {


list = list.concat(items); list = list.concat(items);


return list.sortBy(x => x.get('last_status'), (a, b) => compareId(a, b) * -1);
return list.sortBy(x => x.get('last_status'), (a, b) => {
if(a === null || b === null) {
return -1;
}

return compareId(a, b) * -1;
});
}); });
} }




Notiek ielāde…
Atcelt
Saglabāt