Expand DetailFragment again when exiting the CommentRepliesFragment

This commit is contained in:
TobiGr 2023-08-29 20:51:47 +02:00 committed by Stypox
parent 816e60b090
commit 8b064d77b8
3 changed files with 36 additions and 7 deletions

View file

@ -36,6 +36,8 @@ import io.reactivex.rxjava3.disposables.CompositeDisposable;
public final class CommentRepliesFragment
extends BaseListInfoFragment<CommentsInfoItem, CommentRepliesInfo> {
public static final String TAG = CommentRepliesFragment.class.getSimpleName();
private CommentsInfoItem commentsInfoItem; // the comment to show replies of
private final CompositeDisposable disposables = new CompositeDisposable();
@ -156,4 +158,5 @@ public final class CommentRepliesFragment
protected ItemViewMode getItemViewMode() {
return ItemViewMode.LIST;
}
}