mirror of
https://github.com/foomo/sesamy-cli.git
synced 2025-10-16 12:35:36 +00:00
fix(provider/tracify): api bug
This commit is contained in:
parent
5c662b0d36
commit
ab7644756b
@ -234,6 +234,7 @@ function mapEventData() {
|
||||
origin: url.hostname,
|
||||
order_id: makeString(eventData.transaction_id),
|
||||
currency: eventData.currency,
|
||||
cc: eventData.currency, // required due to API bug
|
||||
amount: amount(eventData.value),
|
||||
};
|
||||
event.data = mapItems(eventData.items || [], event.data);
|
||||
@ -245,6 +246,7 @@ function mapEventData() {
|
||||
origin: url.hostname,
|
||||
conversion_id: makeString(eventData.transaction_id),
|
||||
currency: eventData.currency,
|
||||
cc: eventData.currency, // required due to API bug
|
||||
value: amount(eventData.value),
|
||||
};
|
||||
break;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user