We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a52d18d commit 06fc213Copy full SHA for 06fc213
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "react-native-update",
3
- "version": "10.26.3",
+ "version": "10.26.4",
4
"description": "react-native hot update",
5
"main": "src/index",
6
"scripts": {
src/provider.tsx
@@ -181,7 +181,7 @@ export const UpdateProvider = ({
181
setUpdateInfo(info);
182
if (info.expired) {
183
const { downloadUrl } = info;
184
- if (downloadUrl) {
+ if (downloadUrl && Pushy.apkStatus === null) {
185
if (options.updateStrategy === 'silentAndNow') {
186
if (Platform.OS === 'android' && downloadUrl.endsWith('.apk')) {
187
downloadAndInstallApk(downloadUrl);
0 commit comments