aboutsummaryrefslogtreecommitdiff
path: root/patches/react-native-inappbrowser-reborn+3.5.1.patch
diff options
context:
space:
mode:
authorMichael <michael.foiani@gmail.com>2021-07-02 14:45:18 -0400
committerMichael <michael.foiani@gmail.com>2021-07-02 14:45:18 -0400
commit0d95e094b6370f32f6214d74a87ca56ea6eb477e (patch)
tree9cb100002b07a2ccd2aecbdf727d1ddb33ca0df7 /patches/react-native-inappbrowser-reborn+3.5.1.patch
parent643e7adcda3e5ae7aa3daeb86020f2e6f38d1448 (diff)
parentfa9c527f85d23a38b45c7efc41ec4590597fa7a1 (diff)
Merge master into this test branch.
Diffstat (limited to 'patches/react-native-inappbrowser-reborn+3.5.1.patch')
-rw-r--r--patches/react-native-inappbrowser-reborn+3.5.1.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/patches/react-native-inappbrowser-reborn+3.5.1.patch b/patches/react-native-inappbrowser-reborn+3.5.1.patch
deleted file mode 100644
index 12a49b85..00000000
--- a/patches/react-native-inappbrowser-reborn+3.5.1.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff --git a/node_modules/react-native-inappbrowser-reborn/ios/RNInAppBrowser.m b/node_modules/react-native-inappbrowser-reborn/ios/RNInAppBrowser.m
-index 674e8f1..81f069e 100644
---- a/node_modules/react-native-inappbrowser-reborn/ios/RNInAppBrowser.m
-+++ b/node_modules/react-native-inappbrowser-reborn/ios/RNInAppBrowser.m
-@@ -90,15 +90,17 @@ RCT_EXPORT_METHOD(openAuth:(NSString *)authURL
- }
- };
-
-+ NSString *escapedRedirectURL = [redirectURL stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLHostAllowedCharacterSet]];
-+
- if (@available(iOS 12.0, *)) {
- webAuthSession = [[ASWebAuthenticationSession alloc]
- initWithURL:url
-- callbackURLScheme:redirectURL
-+ callbackURLScheme:escapedRedirectURL
- completionHandler:completionHandler];
- } else {
- authSession = [[SFAuthenticationSession alloc]
- initWithURL:url
-- callbackURLScheme:redirectURL
-+ callbackURLScheme:escapedRedirectURL
- completionHandler:completionHandler];
- }
-