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

Commit ed240ec

Browse files
author
Will Anderson
committed
Pass rollback timeout through in apply method
1 parent 0d6c7b4 commit ed240ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package-mixins.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ module.exports = (NativeCodePush) => {
1616
};
1717

1818
var local = {
19-
apply: function apply(rollbackTimeout) {
20-
return NativeCodePush.applyUpdate(this);
19+
apply: function apply(rollbackTimeout = 0) {
20+
return NativeCodePush.applyUpdate(this, rollbackTimeout);
2121
}
2222
};
2323

0 commit comments

Comments
 (0)