We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 413a1b5 commit 9797803Copy full SHA for 9797803
1 file changed
app/src/main/java/org/schabi/newpipe/fragments/detail/VideoDetailFragment.java
@@ -523,7 +523,7 @@ private void setOnClickListeners() {
523
524
private View.OnClickListener makeOnClickListener(final Consumer<StreamInfo> consumer) {
525
return v -> {
526
- if (currentInfo != null) {
+ if (!isLoading.get() && currentInfo != null) {
527
consumer.accept(currentInfo);
528
}
529
};
0 commit comments