less strict filter for raw url downloads
This commit is contained in:
parent
9471aad4ba
commit
d308f48a1e
1 changed files with 4 additions and 3 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue