Fixed another missing NoneType-check that caused a crash.

This commit is contained in:
The Wobbler 2025-03-05 16:51:50 +01:00
parent 971ead90c1
commit 9ae1704e4a

View file

@ -71,17 +71,22 @@ class TrackInfo(QToolBar):
self.artist.setText(f"By {artist}")
else:
self.artist.setText("No Artist")
self.artist.setText("")
if album is not None and not album == "":
self.album.setText(f"In {album}")
else:
self.album.setText("No Album")
self.album.setText("")
if current_track.metadata.images is None: # can't display cover image when there are no images at all
self.track_cover.setPixmap(self.wobuzz_logo)
return
cover = current_track.metadata.images.any
if cover is None:
if cover is None: # can't display cover image when there is none
self.track_cover.setPixmap(self.wobuzz_logo)
return