Compare commits

..

No commits in common. "95e9b8cabf0fee8aea675dcf96123c1d9469045c" and "20cdd8e68888665bcdecbbc612b3787facc65c46" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@
display: flex; display: flex;
overflow: hidden; overflow: hidden;
max-width: 100%; max-width: 100%;
transition: all 0.3s 0.5s; transition: all 0.3s;
} }
/* Cannot be removed, so that it animates its width change */ /* Cannot be removed, so that it animates its width change */

View File

@ -129,7 +129,7 @@ function loadOlderPosts() {
// There shouldn't be any duplicates, but better be safe than sorry // There shouldn't be any duplicates, but better be safe than sorry
data.posts = filterDuplicates(data.posts.concat(resp)); data.posts = filterDuplicates(data.posts.concat(resp));
// If we got less than we expected, there are no older posts available // If we got less than we expected, there are no older posts available
moreOlderPostsAvailable = resp.length >= (filter.count ?? 20); moreOlderPostsAvailable = resp.length < (filter.count ?? 20);
} else { } else {
moreOlderPostsAvailable = false; moreOlderPostsAvailable = false;
} }