renderAccounts: reverse the list of pubkeys

This commit is contained in:
Alex Gleason
2024-05-31 15:30:04 -05:00
parent b7943669b2
commit 2ff929ca95
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ const mutesController: AppController = async (c) => {
if (event10000) {
const pubkeys = getTagSet(event10000.tags, 'p');
return renderAccounts(c, [...pubkeys].reverse());
return renderAccounts(c, [...pubkeys]);
} else {
return c.json([]);
}