fix: some small issue

This commit is contained in:
Terry Geng
2020-03-05 19:56:55 +08:00
parent a60b991486
commit ce25fcabee
8 changed files with 47 additions and 33 deletions

View File

@ -143,8 +143,6 @@ class URLItem(FileItem):
'preferredquality': '192'},
{'key': 'FFmpegMetadata'}]
}
# TODO
self.send_client_message(constants.strings('download_in_progress', item=self.url))
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
attempts = var.config.getint('bot', 'download_attempts', fallback=2)
@ -166,6 +164,7 @@ class URLItem(FileItem):
self.log.info(
"bot: finished downloading url (%s) %s, saved to %s." % (self.title, self.url, self.path))
self.downloading = False
self._read_thumbnail_from_file(base_path + ".jpg")
return True
else:
for f in glob.glob(base_path + "*"):
@ -211,5 +210,8 @@ class URLItem(FileItem):
return display
def format_short_string(self):
return self.title if self.title else self.url
def display_type(self):
return constants.strings("url")