Fix edge cases where posts would not be added/removed

This commit is contained in:
Toby Zerner 2015-05-29 18:55:53 +09:30
parent 57df38e85a
commit 026e6361e5

View File

@ -87,7 +87,7 @@ class PostStream extends mixin(Component, evented) {
stream is not visible.
*/
pushPost(post) {
if (this.visibleEnd == this.count() - 1) {
if (this.visibleEnd >= this.count() - 1) {
this.posts.push(post);
this.visibleEnd++;
}
@ -99,7 +99,7 @@ class PostStream extends mixin(Component, evented) {
*/
removePost(id) {
this.posts.some((item, i) => {
if (item && item.id() === id) {
if (item && item.id() == id) {
this.posts.splice(i, 1);
this.visibleEnd--;
return true;