File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed
packages/plugins/plugin-appsflyer/src Expand file tree Collapse file tree 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 {
167167 source : media_source ,
168168 } ,
169169 } ;
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+ ) ;
171177 }
172178 } ) ;
173179 } ;
@@ -183,7 +189,13 @@ export class AppsflyerPlugin extends DestinationPlugin {
183189 source : media_source ,
184190 } ,
185191 } ;
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+ ) ;
187199 }
188200 } ) ;
189201 } ;
You can’t perform that action at this time.
0 commit comments