Skip to content

Commit 8a68cf8

Browse files
committed
[iwara] fix info_only
1 parent b719681 commit 8a68cf8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/you_get/extractors/iwara.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ def iwara_download(url, output_dir='.', merge=True, info_only=False, **kwargs):
2828
down_urls=data[0]['uri']
2929
print_info(down_urls,title+data[0]['resolution'],type,size)
3030

31-
download_urls([down_urls], title, ext, size, output_dir, merge = merge,headers=headers)
31+
if not info_only:
32+
download_urls([down_urls], title, ext, size, output_dir, merge = merge,headers=headers)
3233

3334
site_info = "iwara"
3435
download = iwara_download
35-
download_playlist = playlist_not_supported('iwara')
36+
download_playlist = playlist_not_supported('iwara')

0 commit comments

Comments
 (0)