Missing cover art should be empty string
This commit is contained in:
parent
a8170962d1
commit
32d95cd162
1 changed files with 1 additions and 1 deletions
2
main.py
2
main.py
|
@ -90,7 +90,7 @@ class gPotherSide:
|
||||||
def _get_cover(self, podcast):
|
def _get_cover(self, podcast):
|
||||||
filename = self.core.cover_downloader.get_cover(podcast)
|
filename = self.core.cover_downloader.get_cover(podcast)
|
||||||
if not filename:
|
if not filename:
|
||||||
return 'artwork/default.png'
|
return ''
|
||||||
return 'file://' + filename
|
return 'file://' + filename
|
||||||
|
|
||||||
def convert_podcast(self, podcast):
|
def convert_podcast(self, podcast):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue