@@ -123,10 +123,10 @@ - (void)handleMethodCall:(FlutterMethodCall *)call result:(FlutterResult)result
123123 [Adjust checkForNewAttStatus ];
124124 } else if ([@" getLastDeeplink" isEqualToString: call.method]) {
125125 [self getLastDeeplink: call withResult: result];
126- } else if ([@" updateConversionValueWithCallback " isEqualToString: call.method]) {
127- [self updateConversionValueWithCallback : call withResult: result];
128- } else if ([@" updateConversionValueWithCallbackSkad4 " isEqualToString: call.method]) {
129- [self updateConversionValueWithCallbackSkad4 : call withResult: result];
126+ } else if ([@" updateConversionValueWithErrorCallback " isEqualToString: call.method]) {
127+ [self updateConversionValueWithErrorCallback : call withResult: result];
128+ } else if ([@" updateConversionValueWithErrorCallbackSkad4 " isEqualToString: call.method]) {
129+ [self updateConversionValueWithErrorCallbackSkad4 : call withResult: result];
130130 } else {
131131 result (FlutterMethodNotImplemented);
132132 }
@@ -700,7 +700,7 @@ - (void)getLastDeeplink:(FlutterMethodCall *)call withResult:(FlutterResult)resu
700700 }
701701}
702702
703- - (void )updateConversionValueWithCallback : (FlutterMethodCall *)call withResult : (FlutterResult)result {
703+ - (void )updateConversionValueWithErrorCallback : (FlutterMethodCall *)call withResult : (FlutterResult)result {
704704 NSString *conversionValue = call.arguments [@" conversionValue" ];
705705 if ([self isFieldValid: conversionValue]) {
706706 [Adjust updatePostbackConversionValue: [conversionValue intValue ]
@@ -710,7 +710,7 @@ - (void)updateConversionValueWithCallback:(FlutterMethodCall *)call withResult:(
710710 }
711711}
712712
713- - (void )updateConversionValueWithCallbackSkad4 : (FlutterMethodCall *)call withResult : (FlutterResult)result {
713+ - (void )updateConversionValueWithErrorCallbackSkad4 : (FlutterMethodCall *)call withResult : (FlutterResult)result {
714714 NSString *conversionValue = call.arguments [@" conversionValue" ];
715715 NSString *coarseValue = call.arguments [@" coarseValue" ];
716716 NSString *lockWindow = call.arguments [@" lockWindow" ];
0 commit comments