Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit a59e4cf

Browse files
jiamingluMax
authored andcommitted
Fix packageHash not passed to /updateCheck on Android (#803)
1 parent e761ad1 commit a59e4cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CodePush.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ async function checkForUpdate(deploymentKey = null) {
4646
queryPackage = localPackage;
4747
} else {
4848
queryPackage = { appVersion: config.appVersion };
49-
if (Platform.OS === "ios" && config.packageHash) {
49+
if (config.packageHash) {
5050
queryPackage.packageHash = config.packageHash;
5151
}
5252
}

0 commit comments

Comments
 (0)