Skip to content

Commit

Permalink
Merge pull request #5820 from TeamNewPipe/mini_player_title
Browse files Browse the repository at this point in the history
Fix empty stream title in minimized player
  • Loading branch information
Stypox authored Mar 17, 2021
2 parents 338a483 + 985f659 commit 93592d2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2264,7 +2264,7 @@ public void onSlide(@NonNull final View bottomSheet, final float slideOffset) {
private void updateOverlayData(@Nullable final String overlayTitle,
@Nullable final String uploader,
@Nullable final String thumbnailUrl) {
binding.overlayTitleTextView.setText(isEmpty(title) ? "" : title);
binding.overlayTitleTextView.setText(isEmpty(overlayTitle) ? "" : overlayTitle);
binding.overlayChannelTextView.setText(isEmpty(uploader) ? "" : uploader);
binding.overlayThumbnail.setImageResource(R.drawable.dummy_thumbnail_dark);
if (!isEmpty(thumbnailUrl)) {
Expand Down

0 comments on commit 93592d2

Please sign in to comment.