Skip to content

Commit

Permalink
SW-19727 - Fix customer stream country filter
Browse files Browse the repository at this point in the history
  • Loading branch information
jenskueper committed Aug 25, 2017
1 parent f65948e commit 1ff0a68
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public function populatePartial($streamId, Criteria $criteria)
$result = $this->numberSearch->search($criteria);

$insert = $this->connection->prepare(
'INSERT INTO s_customer_streams_mapping (stream_id, customer_id) VALUES (:streamId, :customerId)'
'INSERT IGNORE INTO s_customer_streams_mapping (stream_id, customer_id) VALUES (:streamId, :customerId)'
);

foreach ($result->getIds() as $customerId) {
Expand Down

0 comments on commit 1ff0a68

Please sign in to comment.