Skip to content

Commit bca47d4

Browse files
committed
Fix Block channel on chapters
1 parent 2da3398 commit bca47d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/src/main/java/com/liskovsoft/smartyoutubetv2/common/app/presenters/dialogs/menu/VideoMenuPresenter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ private void appendNotRecommendChannelButton() {
400400
}
401401

402402
private void appendBlockChannelButton() {
403-
if (mVideo == null || !mIsBlockChannelEnabled) {
403+
if (mVideo == null || mVideo.isChapter || !mIsBlockChannelEnabled) {
404404
return;
405405
}
406406

0 commit comments

Comments
 (0)