Merge pull request #10396 from AudricV/one-stream-main-player-queue-button

Show play queue button in main player when there is one stream
This commit is contained in:
Audric V 2023-08-31 15:06:06 +02:00 committed by GitHub
commit 7c1790bbfd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -434,7 +434,7 @@ public final class MainPlayerUi extends VideoPlayerUi implements View.OnLayoutCh
return;
}
final boolean showQueue = playQueue.getStreams().size() > 1;
final boolean showQueue = !playQueue.getStreams().isEmpty();
final boolean showSegment = !player.getCurrentStreamInfo()
.map(StreamInfo::getStreamSegments)
.map(List::isEmpty)