File tree 1 file changed +14
-2
lines changed
packages/plugins/plugin-appsflyer/src 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -167,7 +167,13 @@ export class AppsflyerPlugin extends DestinationPlugin {
167
167
source : media_source ,
168
168
} ,
169
169
} ;
170
- void this . analytics ?. track ( 'Deep Link Opened' , properties ) ;
170
+ this . analytics
171
+ ?. track ( 'Deep Link Opened' , properties )
172
+ . then ( ( ) =>
173
+ this . analytics ?. logger . info (
174
+ 'Sent Deep Link Opened event to Segment'
175
+ )
176
+ ) ;
171
177
}
172
178
} ) ;
173
179
} ;
@@ -183,7 +189,13 @@ export class AppsflyerPlugin extends DestinationPlugin {
183
189
source : media_source ,
184
190
} ,
185
191
} ;
186
- void this . analytics ?. track ( 'Deep Link Opened' , properties ) ;
192
+ this . analytics
193
+ ?. track ( 'Deep Link Opened' , properties )
194
+ . then ( ( ) =>
195
+ this . analytics ?. logger . info (
196
+ 'Sent Deep Link Opened event to Segment'
197
+ )
198
+ ) ;
187
199
}
188
200
} ) ;
189
201
} ;
You can’t perform that action at this time.
0 commit comments