less strict filter for raw url downloads

This commit is contained in:
Tomáš Mládek 2019-05-04 23:27:28 +02:00
parent 9471aad4ba
commit d308f48a1e

View file

@ -296,9 +296,10 @@ class DelojzaBot:
if len(ytdl_urls) > 0:
self.handle(ytdl_urls, message, hashtag, self.download_ytdl)
if len(normal_urls) > 0:
image_urls = [url for url in normal_urls if "image" in requests.head(url).headers.get("Content-Type", "")]
if len(image_urls) > 0:
self.handle(image_urls, message, hashtag, self.download_raw)
file_urls = [url for url in normal_urls if
"text" not in requests.head(url).headers.get("Content-Type", "text")]
if len(file_urls) > 0:
self.handle(file_urls, message, hashtag, self.download_raw)
# noinspection PyBroadException
def tg_handle_rest(self, bot, update):