mirror of
https://github.com/FoxxMD/context-mod.git
synced 2026-01-14 07:57:57 -05:00
Fix listing end check
This commit is contained in:
@@ -48,7 +48,7 @@ export async function getAuthorActivities(user: RedditUser, options: AuthorTyped
|
||||
listing = await user.getOverview({limit: chunkSize});
|
||||
break;
|
||||
}
|
||||
let hitEnd = listing.isFinished;
|
||||
let hitEnd = false;
|
||||
while (!hitEnd) {
|
||||
items = items.concat(listing);
|
||||
if (typeof window === 'number') {
|
||||
|
||||
Reference in New Issue
Block a user