Skip to content

Commit

Permalink
Merge pull request #9 from Multidialogo/develop
Browse files Browse the repository at this point in the history
fix bug making messages to override each other
  • Loading branch information
zio-mitch authored Jan 30, 2025
2 parents c3c767a + abc625f commit f1ed3d7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,8 @@ func handleMailQueue(w http.ResponseWriter, r *http.Request) {
if queueUUID == "" {
queueUUID = ids[1]
}
if messageUUID == "" {
messageUUID = ids[2]
}

messageUUID = ids[2]

attachmentPaths := make([]string, len(emailData.Attributes.Attachments))
for i, attachmentPath := range emailData.Attributes.Attachments {
Expand Down

0 comments on commit f1ed3d7

Please sign in to comment.