Fixed emoticon ordering in chat.

This commit is contained in:
flash 2023-08-07 12:59:08 +00:00
parent 2214dffc5b
commit fb41c71ee9

View file

@ -81,7 +81,7 @@ final class SharpChatRoutes {
$response->setHeader('Access-Control-Allow-Origin', '*');
$response->setHeader('Access-Control-Allow-Methods', 'GET');
$emotes = $this->emotes->getEmotes();
$emotes = $this->emotes->getEmotes(orderBy: 'order');
$out = [];
foreach($emotes as $emoteInfo) {