This repository was archived by the owner on Aug 30, 2023. It is now read-only.

Description
for (MDMViewControllerTransitionContextNode *child in _children) {
[child attemptFallback];
[child start];
}
should be
[self attemptFallback];
for (MDMViewControllerTransitionContextNode *child in _children) {
[child start];
}
otherwise composed transitions will not attempt to fallback.