You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,12 @@ in case of vulnerabilities.
22
22
23
23
## [Unreleased]
24
24
25
+
## [3.3.0] - 2019-11-12
26
+
27
+
### Fixed
28
+
- Removed `waitForRedirectDelay` option and fixed race condition from **Android** to get the response of the redirection ([#36](https://github.com/proyecto26/react-native-inappbrowser/issues/36))
29
+
- Fixed **Android** Activity issue closing the browser and restoring the state by using `onSaveInstanceState` ([#60](https://github.com/proyecto26/react-native-inappbrowser/issues/60)).
Copy file name to clipboardExpand all lines: README.md
+2-5Lines changed: 2 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -156,7 +156,6 @@ Property | Description
156
156
`animations` (Object) | Sets the start and exit animations. [`{ startEnter, startExit, endEnter, endExit }`]
157
157
`headers` (Object) | The data are key/value pairs, they will be sent in the HTTP request headers for the provided url. [`{ 'Authorization': 'Bearer ...' }`]
158
158
`forceCloseOnRedirection` (Boolean) | Open Custom Tab in a new task to avoid issues redirecting back to app scheme. [`true`/`false`]
159
-
`waitForRedirectDelay` (Number) | Sets a delay for wait the redirection using `openAuth` method.
160
159
161
160
### Demo
162
161
@@ -197,8 +196,7 @@ import InAppBrowser from 'react-native-inappbrowser-reborn'
197
196
},
198
197
headers: {
199
198
'my-custom-header': 'my custom header value'
200
-
},
201
-
waitForRedirectDelay: 0
199
+
}
202
200
})
203
201
Alert.alert(JSON.stringify(result))
204
202
}
@@ -270,8 +268,7 @@ import { getDeepLink } from './utilities'
0 commit comments