1
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-11-21 22:10:11 +01:00

Update app/src/main/java/org/schabi/newpipe/fragments/list/videos/RelatedItemsFragment.java

Co-authored-by: Tobi <TobiGr@users.noreply.github.com>
This commit is contained in:
rmtilde 2024-11-03 18:26:38 +11:00 committed by GitHub
parent 1996c1176c
commit 66ec596f67
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -179,29 +179,23 @@ public class RelatedItemsFragment extends BaseListInfoFragment<InfoItem, Related
@Override
protected void showInfoItemDialog(final StreamInfoItem item) {
try {
final Fragment parentFragment = getParentFragment();
// Try and attach the InfoItemDialog to the parent fragment of the RelatedItemsFragment
// so that its context is not lost when the RelatedItemsFragment is reinitialized.
if (parentFragment != null) {
// Try and attach the InfoItemDialog to the parent fragment of the RelatedItemsFragment
// so that its context is not lost when the RelatedItemsFragment is reinitialized,
// e.g. when a new stream is loaded in a parent VideoDetailFragment.
final Fragment parentFragment = getParentFragment();
if (parentFragment != null) {
try {
new InfoItemDialog.Builder(
parentFragment.getActivity(),
parentFragment.getContext(),
parentFragment,
item
).create().show();
} else {
new InfoItemDialog.Builder(
getActivity(),
getContext(),
this,
item)
.create().show();
} catch (final IllegalArgumentException e) {
InfoItemDialog.Builder.reportErrorDuringInitialization(e, item);
}
} catch (final IllegalArgumentException e) {
InfoItemDialog.Builder.reportErrorDuringInitialization(e, item);
} else {
super.showInfoItemDialog(item);
}
}