1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-23 19:55:38 +01:00

downlooad_thumbnail: fix a crash missing arguments

fixing: #1150
This commit is contained in:
Johan Andersson 2019-09-12 19:47:50 +02:00
parent 97f651837a
commit 7065467dcd

View File

@ -122,7 +122,7 @@ class OpenGraphThumbMixin:
url = opengraph_get(self.get_urldata(), "image")
if url is None:
return
download_thumbnails(options, [(False, url)])
download_thumbnails(self.output, options, [(False, url)])
class MetadataThumbMixin: