fix: message attachments

This commit is contained in:
Shivam Mishra 2025-05-20 16:28:08 +05:30
parent da4049d18a
commit 02ca4136ad
No known key found for this signature in database

View File

@ -72,7 +72,10 @@ const fetchMore = async () => {
onMounted(async () => {
await store.dispatch('inboxes/get');
await store.dispatch('getConversation', conversationId.value);
await Promise.all([
store.dispatch('getConversation', conversationId.value),
store.dispatch('fetchAllAttachments', conversationId.value),
]);
});
watch(conversation, () => {