From 09a020afbba5b0dddc90e0586ca7f2c33b75e107 Mon Sep 17 00:00:00 2001 From: Lei Nelissen Date: Sat, 24 May 2025 00:15:08 +0200 Subject: [PATCH] chore: remove react-native-fast-image patch --- patches/react-native-fast-image+8.6.3.patch | 22 --------------------- 1 file changed, 22 deletions(-) delete mode 100644 patches/react-native-fast-image+8.6.3.patch diff --git a/patches/react-native-fast-image+8.6.3.patch b/patches/react-native-fast-image+8.6.3.patch deleted file mode 100644 index c2c802b..0000000 --- a/patches/react-native-fast-image+8.6.3.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff --git a/node_modules/react-native-fast-image/ios/FastImage/FFFastImageView.m b/node_modules/react-native-fast-image/ios/FastImage/FFFastImageView.m -index f710081..87c4532 100644 ---- a/node_modules/react-native-fast-image/ios/FastImage/FFFastImageView.m -+++ b/node_modules/react-native-fast-image/ios/FastImage/FFFastImageView.m -@@ -32,7 +32,7 @@ - - - (void) setOnFastImageLoadEnd: (RCTDirectEventBlock)onFastImageLoadEnd { - _onFastImageLoadEnd = onFastImageLoadEnd; -- if (self.hasCompleted) { -+ if (self.hasCompleted && _onFastImageLoadEnd != NULL) { - _onFastImageLoadEnd(@{}); - } - } -@@ -46,7 +46,7 @@ - - - (void) setOnFastImageError: (RCTDirectEventBlock)onFastImageError { - _onFastImageError = onFastImageError; -- if (self.hasErrored) { -+ if (self.hasErrored && _onFastImageError != NULL) { - _onFastImageError(@{}); - } - }