You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/YoutubeStreamExtractor.java
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -759,7 +759,8 @@ public void onFetchPage(@Nonnull final Downloader downloader)
759
759
if (reason.equals("This video requires payment to watch.")) {
760
760
thrownewPaidContentException("This video is a paid video");
761
761
}
762
-
if (reason.equals("Join this channel to get access to members-only content like this video, and other exclusive perks.")) {
762
+
if (reason.equals("Join this channel to get access to members-only content like this video, and other exclusive perks.") ||
763
+
reason.equals("Join this channel to get access to members-only content like this video and other exclusive perks.")) {
763
764
thrownewPaidContentException("This video is only available for members of the channel of this video");
0 commit comments