mirror of
https://github.com/flarum/core.git
synced 2025-07-21 00:31:17 +02:00
Fix edge cases where posts would not be added/removed
This commit is contained in:
@@ -87,7 +87,7 @@ class PostStream extends mixin(Component, evented) {
|
|||||||
stream is not visible.
|
stream is not visible.
|
||||||
*/
|
*/
|
||||||
pushPost(post) {
|
pushPost(post) {
|
||||||
if (this.visibleEnd == this.count() - 1) {
|
if (this.visibleEnd >= this.count() - 1) {
|
||||||
this.posts.push(post);
|
this.posts.push(post);
|
||||||
this.visibleEnd++;
|
this.visibleEnd++;
|
||||||
}
|
}
|
||||||
@@ -99,7 +99,7 @@ class PostStream extends mixin(Component, evented) {
|
|||||||
*/
|
*/
|
||||||
removePost(id) {
|
removePost(id) {
|
||||||
this.posts.some((item, i) => {
|
this.posts.some((item, i) => {
|
||||||
if (item && item.id() === id) {
|
if (item && item.id() == id) {
|
||||||
this.posts.splice(i, 1);
|
this.posts.splice(i, 1);
|
||||||
this.visibleEnd--;
|
this.visibleEnd--;
|
||||||
return true;
|
return true;
|
||||||
|
Reference in New Issue
Block a user