mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-04-29 00:10:32 +05:30
fix: playlist cover exists even if there is not load image
This commit is contained in:
parent
4623985f84
commit
12236a95b4
@ -136,7 +136,8 @@ class PlaylistFragment : DynamicLayoutManagerFragment() {
|
|||||||
nextPage = response.nextpage
|
nextPage = response.nextpage
|
||||||
playlistName = response.name
|
playlistName = response.name
|
||||||
isLoading = false
|
isLoading = false
|
||||||
ImageHelper.loadImage(response.thumbnailUrl, binding.thumbnail)
|
if (!response.thumbnailUrl.isNullOrEmpty())
|
||||||
|
ImageHelper.loadImage(response.thumbnailUrl, binding.thumbnail)
|
||||||
binding.playlistProgress.isGone = true
|
binding.playlistProgress.isGone = true
|
||||||
binding.playlistAppBar.isVisible = true
|
binding.playlistAppBar.isVisible = true
|
||||||
binding.playlistRecView.isVisible = true
|
binding.playlistRecView.isVisible = true
|
||||||
|
Loading…
x
Reference in New Issue
Block a user