fix download text having whitespace, fix display mode None crashing, and removed files and folders crashing

This commit is contained in:
csd4ni3l
2025-06-20 17:05:22 +02:00
parent f45071e62a
commit d2746b93c1
5 changed files with 35 additions and 8 deletions

View File

@@ -80,7 +80,7 @@ class Downloader(arcade.gui.UIView):
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, text=True)
for line in process.stdout:
self.yt_dl_buffer = line
self.yt_dl_buffer = line.strip()
process.wait()