Browse Source

Fix popTo

Guy Carmeli 7 years ago
parent
commit
1738f999aa

+ 1
- 1
lib/android/app/src/main/java/com/reactnativenavigation/viewcontrollers/StackController.java View File

205
             if (animate) {
205
             if (animate) {
206
                 animatePop(listener);
206
                 animatePop(listener);
207
             } else {
207
             } else {
208
-                pop(listener);
208
+                pop(new CommandListenerAdapter());
209
             }
209
             }
210
             currentControlId = nextControlId;
210
             currentControlId = nextControlId;
211
         }
211
         }