abe-101 / tube-cast

A command-line tool that converts YouTube videos into Anchor FM podcasts
https://pypi.org/project/tube-cast/
MIT License
13 stars 2 forks source link

fix bug #13

Closed abe-101 closed 2 years ago

abe-101 commented 2 years ago

When in thumbnail mode the script deletes the picture when done. I the if statement in line 175 mistakenly test for the wrong thing

    if url_in_description is True:

when instead it should be:

    if thumbnail_mode is True:
abe-101 commented 2 years ago

Thank you @Vraelot for pointing out this issue in #11