File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
AdjustTests/AdjustTestApp/AdjustTestApp Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -347,11 +347,11 @@ - (void)config:(NSDictionary *)parameters {
347347 if ([parameters objectForKey: @" deferredDeeplinkCallback" ]) {
348348 NSLog (@" deferredDeeplinkCallback detected" );
349349 NSString *shouldOpenDeeplinkS = [parameters objectForKey: @" deferredDeeplinkCallback" ][0 ];
350+ BOOL shouldOpenDeeplink = [shouldOpenDeeplinkS boolValue ];
350351 self.adjustDelegate =
351- [[ATAAdjustDelegateDeferredDeeplink alloc ]
352- initWithTestLibrary: self .testLibrary
353- extraPath: self .extraPath
354- andReturnValue: [shouldOpenDeeplinkS boolValue ]];
352+ [[ATAAdjustDelegateDeferredDeeplink alloc ] initWithTestLibrary: self .testLibrary
353+ extraPath: self .extraPath
354+ andReturnValue: shouldOpenDeeplink];
355355 }
356356
357357 if ([parameters objectForKey: @" skanCallback" ]) {
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ - (id)initWithTestLibrary:(ATLTestLibrary *)testLibrary extraPath:(NSString *)ex
3232 return self;
3333}
3434
35- - (BOOL )adjustDeeplinkResponse : (nullable NSURL *)deeplink {
35+ - (BOOL )adjustDeferredDeeplinkReceived : (nullable NSURL *)deeplink {
3636 NSLog (@" Deferred deep link callback called!" );
3737 NSLog (@" Deep link: %@ " , deeplink);
3838
You can’t perform that action at this time.
0 commit comments