Skip to content

Commit

Permalink
fix: fallback to default behaviour when fragment not found (#1566)
Browse files Browse the repository at this point in the history
  • Loading branch information
kkafar authored Aug 22, 2022
1 parent 2c65abf commit 9bc47fb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -161,11 +161,11 @@ open class ScreenContainer<T : ScreenFragment>(context: Context?) : ViewGroup(co
// `findFragment` method throws IllegalStateException when it fails to resolve appropriate
// fragment. It might happen when e.g. React Native is loaded directly in Activity
// but some custom fragments are still used. Such use case seems highly unlikely
// so, as for now we let application crash.
// so, as for now we fallback to activity's FragmentManager in hope for the best.
try {
FragmentManager.findFragment<Fragment>(rootView).childFragmentManager
} catch (ex: IllegalStateException) {
throw IllegalStateException("Failed to find fragment for React Root View")
context.supportFragmentManager
}
}
}
Expand Down

0 comments on commit 9bc47fb

Please sign in to comment.