diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/mpris/player.vala | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/mpris/player.vala b/lib/mpris/player.vala index c69eb21..f4ba8ec 100644 --- a/lib/mpris/player.vala +++ b/lib/mpris/player.vala @@ -498,8 +498,10 @@ public class AstalMpris.Player : Object { } private async void cache_cover() { - if (art_url == null || art_url == "") + if (art_url == null || art_url == "") { + cover_art = null; return; + } var file = File.new_for_uri(art_url); if (file.get_path() != null) { |