Skip to content

Commit

Permalink
fix: private message sent as reply
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinavxd committed Feb 28, 2025
1 parent 461ae3c commit 59951f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/features/conversation/ReplyBox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ const processSend = async () => {
)
await api.sendMessage(conversationStore.current.uuid, {
private: messageType.value === 'private',
private: messageType.value === 'private_note',
message: message,
attachments: conversationStore.conversation.mediaFiles.map((file) => file.id),
// Convert email addresses to array and remove empty strings.
Expand Down

0 comments on commit 59951f0

Please sign in to comment.