File tree 1 file changed +7
-5
lines changed
1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
1
diff --git a/node_modules/react-native/.gradle/buildOutputCleanup/buildOutputCleanup.lock b/node_modules/react-native/.gradle/buildOutputCleanup/buildOutputCleanup.lock
2
2
new file mode 100644
3
- index 0000000..a403fbb
4
- Binary files /dev/null and b/node_modules/react-native/.gradle/buildOutputCleanup/buildOutputCleanup.lock differ
3
+ index 0000000..e69de29
5
4
diff --git a/node_modules/react-native/.gradle/buildOutputCleanup/cache.properties b/node_modules/react-native/.gradle/buildOutputCleanup/cache.properties
6
5
new file mode 100644
7
6
index 0000000..17fb517
@@ -45,10 +44,10 @@ index 0000000..dacc2de
45
44
+ </filteredResources>
46
45
+</projectDescription>
47
46
diff --git a/node_modules/react-native/Libraries/ReactNative/AppRegistry.js b/node_modules/react-native/Libraries/ReactNative/AppRegistry.js
48
- index 68bd389..4d1925e 100644
47
+ index 68bd389..f99894d 100644
49
48
--- a/node_modules/react-native/Libraries/ReactNative/AppRegistry.js
50
49
+++ b/node_modules/react-native/Libraries/ReactNative/AppRegistry.js
51
- @@ -232,12 +232,31 @@ const AppRegistry = {
50
+ @@ -232,12 +232,34 @@ const AppRegistry = {
52
51
appParameters: Object,
53
52
displayMode?: number,
54
53
): void {
@@ -67,7 +66,10 @@ index 68bd389..4d1925e 100644
67
66
+ return parameters;
68
67
+ }
69
68
+
70
- + const redactedSearchParams = [...new URLSearchParams(queryString).entries()].map(([key, value]) => `${key}=${sensitiveParams.includes(key) ? '<REDACTED>' : value}`);
69
+ + const redactedSearchParams = queryString.split('&').map((param) => {
70
+ + const [key, value] = param.split('=');
71
+ + return `${key}=${sensitiveParams.includes(key) ? '<REDACTED>' : value}`
72
+ + });
71
73
+ return {...parameters, initialProps: {...initialProps, url: `${urlBase}?${redactedSearchParams.join('&')}`}};
72
74
+ }
73
75
+
You can’t perform that action at this time.
0 commit comments