Skip to content

Commit 8c2cc7e

Browse files
committed
ADO-313: Adds param to determine if event id to be stored in session or singleton class
1 parent 74c9870 commit 8c2cc7e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/code/Meta/Conversion/Plugin/Tracker/AddGuestPaymentInfo.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function afterSavePaymentInformation(
3535
) {
3636
if ($result) {
3737
$payload = $this->addPaymentInfoTracker->getPayload($this->getInitialPayload($cartId));
38-
$this->capiTracker->execute($payload, self::EVENT_NAME, $this->addPaymentInfoTracker->getEventType());
38+
$this->capiTracker->execute($payload, self::EVENT_NAME, $this->addPaymentInfoTracker->getEventType(), true);
3939
}
4040
return $result;
4141
}

app/code/Meta/Conversion/Plugin/Tracker/AddPaymentInfo.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function afterSavePaymentInformation(
3131
) {
3232
if ($result) {
3333
$payload = $this->addPaymentInfoTracker->getPayload($this->getInitialPayload($cartId));
34-
$this->capiTracker->execute($payload, self::EVENT_NAME, $this->addPaymentInfoTracker->getEventType());
34+
$this->capiTracker->execute($payload, self::EVENT_NAME, $this->addPaymentInfoTracker->getEventType(), true);
3535
}
3636
return $result;
3737
}

0 commit comments

Comments
 (0)