Skip to content

Commit

Permalink
sneakily fixed pool order
Browse files Browse the repository at this point in the history
  • Loading branch information
clragon committed Apr 10, 2020
1 parent 07231df commit a0a0b68
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ class Client {
for (int index = 0; index < pool.postIDs.length && index < ((page + 1) * 100); index++) {
filter = filter + pool.postIDs[index].toString() + ',';
}
filter = filter + ' ' + 'order:id';
return await posts(new Tagset.parse(filter), page, limit: 100);
}

Expand Down

0 comments on commit a0a0b68

Please sign in to comment.