From 738466fb7199242e876ef900544caa0c4635f5f9 Mon Sep 17 00:00:00 2001 From: Krzysztof Magiera Date: Tue, 19 Apr 2016 08:01:38 +0200 Subject: [PATCH] Workaround for forceUpdate bug. --- Libraries/Animated/src/AnimatedImplementation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/Animated/src/AnimatedImplementation.js b/Libraries/Animated/src/AnimatedImplementation.js index 96a8a372c29fa3..49ee2436757c88 100644 --- a/Libraries/Animated/src/AnimatedImplementation.js +++ b/Libraries/Animated/src/AnimatedImplementation.js @@ -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();