Chats: normalize chat messages from the API

This commit is contained in:
Alex Gleason
2022-08-29 16:35:41 -05:00
parent 2f5caad67f
commit 271bc271f7

View File

@ -5,6 +5,7 @@ import snackbar from 'soapbox/actions/snackbar';
import compareId from 'soapbox/compare_id';
import { useChatContext } from 'soapbox/contexts/chat-context';
import { useApi, useAppDispatch } from 'soapbox/hooks';
import { normalizeChatMessage } from 'soapbox/normalizers';
import { queryClient } from './client';
@ -51,7 +52,7 @@ const useChatMessages = (chatId: string) => {
});
const hasMore = !!headers.link;
const result = data.sort(reverseOrder);
const result = data.sort(reverseOrder).map(normalizeChatMessage);
const nextMaxId = result[0]?.id;
return {