Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

Commit 8327bf8

Browse files
fix: attribution error due to install conversion data failure (segmentio#556)
1 parent 30ba63d commit 8327bf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/plugins/plugin-appsflyer/src/AppsflyerPlugin.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export class AppsflyerPlugin extends DestinationPlugin {
8585
},
8686
};
8787

88-
if (JSON.parse(is_first_launch) === true) {
88+
if (is_first_launch && JSON.parse(is_first_launch) === true) {
8989
if (af_status === 'Non-organic') {
9090
this.analytics?.track('Install Attributed', properties);
9191
} else {

0 commit comments

Comments
 (0)