Skip to content

Commit

Permalink
Workaround for forceUpdate bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
kmagiera committed Apr 19, 2016
1 parent c8f4096 commit 738466f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Libraries/Animated/src/AnimatedImplementation.js
Original file line number Diff line number Diff line change
Expand Up @@ -1291,7 +1291,7 @@ class AnimatedProps extends Animated {
for (var key in this._props) {
var value = this._props[key];
if (value instanceof Animated) {
if (!value.__isNative) {
if (!value.__isNative || true) {
// We cannot use value of natively driven nodes this way as the value we have access from JS
// may not be up to date
props[key] = value.__getValue();
Expand Down

0 comments on commit 738466f

Please sign in to comment.