diff --git a/litecord/blueprints/channel/messages.py b/litecord/blueprints/channel/messages.py index 4809c6d..fcce097 100644 --- a/litecord/blueprints/channel/messages.py +++ b/litecord/blueprints/channel/messages.py @@ -93,7 +93,7 @@ async def around_message_search( after_messages = await message_search( channel_id, before=None, after=around_id, limit=halved_limit, order="ASC" ) - return reversed(before_messages) + [around_id] + after_messages + return list(reversed(before_messages)) + [around_id] + after_messages @bp.route("//messages", methods=["GET"])