From 36658f60cd86c4ed615502b67d21bf0adddf1f7e Mon Sep 17 00:00:00 2001 From: Baoshuo Ren Date: Tue, 26 Apr 2022 21:27:24 +0800 Subject: [PATCH] chore: remove git.io All links on git.io will stop redirecting after April 29, 2022. - https://github.blog/changelog/2022-04-25-git-io-deprecation/ --- .../react/nativemodule/core/platform/ios/RCTTurboModule.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReactCommon/react/nativemodule/core/platform/ios/RCTTurboModule.mm b/ReactCommon/react/nativemodule/core/platform/ios/RCTTurboModule.mm index 9ccbbc4ef87f..1ae1feb403e6 100644 --- a/ReactCommon/react/nativemodule/core/platform/ios/RCTTurboModule.mm +++ b/ReactCommon/react/nativemodule/core/platform/ios/RCTTurboModule.mm @@ -626,7 +626,7 @@ static RCTResponseSenderBlock convertJSIFunctionToCallback( if ([objCArg isKindOfClass:[NSDictionary class]] && hasMethodArgConversionSelector(methodNameNSString, i)) { SEL methodArgConversionSelector = getMethodArgConversionSelector(methodNameNSString, i); - // Message dispatch logic from old infra (link: https://git.io/fjf3U) + // Message dispatch logic from old infra (link: https://github.com/facebook/react-native/commit/6783694158057662fd7b11fc123c339b2b21bfe6#diff-263fc157dfce55895cdc16495b55d190R350) RCTManagedPointer *(*convert)(id, SEL, id) = (__typeof__(convert))objc_msgSend; RCTManagedPointer *box = convert([RCTCxxConvert class], methodArgConversionSelector, objCArg);