We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53ee59d commit 6153e20Copy full SHA for 6153e20
1 file changed
packages/plugins/plugin-appsflyer/src/AppsflyerPlugin.tsx
@@ -134,11 +134,11 @@ export class AppsflyerPlugin extends DestinationPlugin {
134
}
135
if (Boolean(is_first_launch) && JSON.parse(is_first_launch) === true) {
136
if (af_status === 'Non-organic') {
137
- void this.analytics?.track('Install Attributed', properties);
+ this.analytics?.track('Install Attributed', properties).then(() => this.analytics?.logger.info("Sent Install Attributed event to Segment"));
138
} else {
139
- void this.analytics?.track('Organic Install', {
+ this.analytics?.track('Organic Install', {
140
provider: 'AppsFlyer',
141
- });
+ }).then(() => this.analytics?.logger.info("Sent Organic Install event to Segment"));
142
143
144
});
0 commit comments