From dfc24fa1edc9df9ef6f04053ebd78561bca5b321 Mon Sep 17 00:00:00 2001 From: Baoshuo Ren Date: Wed, 27 Apr 2022 03:34:02 -0700 Subject: [PATCH] chore: remove git.io (#33715) Summary: All links on git.io will stop redirecting after April 29, 2022. So I removed it. - https://github.blog/changelog/2022-04-25-git-io-deprecation/ Pull Request resolved: https://github.com/facebook/react-native/pull/33715 Reviewed By: GijsWeterings Differential Revision: D35933602 Pulled By: cortinico fbshipit-source-id: 656282f3e506b984f4a72e7449320a8241e569c5 --- .../react/nativemodule/core/platform/ios/RCTTurboModule.mm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ReactCommon/react/nativemodule/core/platform/ios/RCTTurboModule.mm b/ReactCommon/react/nativemodule/core/platform/ios/RCTTurboModule.mm index 9ccbbc4ef87..1ee5908fb2b 100644 --- a/ReactCommon/react/nativemodule/core/platform/ios/RCTTurboModule.mm +++ b/ReactCommon/react/nativemodule/core/platform/ios/RCTTurboModule.mm @@ -626,7 +626,8 @@ NSInvocation *ObjCTurboModule::getMethodInvocation( 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);