Skip to content

Commit

Permalink
fix destination filling [WTEL-5746]
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Zaritskyi committed Dec 18, 2024
1 parent e0addcb commit 49f53e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export default {
}

// if there's no (required) id or destination, skip to the next one
if (!id || !normalizedItem.destination[index]) break;
if (!id || !normalizedItem.destination[index]) continue;

// if there's actually an Id, continue processing
const communication = {
Expand Down

0 comments on commit 49f53e4

Please sign in to comment.