diff options
author | gabrielgio <gabriel.giovanini@pm.me> | 2021-07-26 22:28:05 +0200 |
---|---|---|
committer | gabrielgio <gabriel.giovanini@pm.me> | 2021-07-26 22:36:04 +0200 |
commit | c8bd60648d193f85479d5f380b05bb6d4394ffda (patch) | |
tree | bf28d510da708ce45c39a6e3accdc514a6b2cd1c /importer/providers/raw_image_base.py | |
parent | bf0cde0b0bb77cd75db03327a461abf26b90c465 (diff) | |
download | reddit-nextcloud-importer-c8bd60648d193f85479d5f380b05bb6d4394ffda.tar.gz reddit-nextcloud-importer-c8bd60648d193f85479d5f380b05bb6d4394ffda.tar.bz2 reddit-nextcloud-importer-c8bd60648d193f85479d5f380b05bb6d4394ffda.zip |
fix: Various fixes
Diffstat (limited to 'importer/providers/raw_image_base.py')
-rw-r--r-- | importer/providers/raw_image_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/importer/providers/raw_image_base.py b/importer/providers/raw_image_base.py index 267dcad..89ecfca 100644 --- a/importer/providers/raw_image_base.py +++ b/importer/providers/raw_image_base.py @@ -8,7 +8,7 @@ from importer.providers.providerbase import ProviderBase class RawImageProviderBase(ProviderBase): - regex = "^.*i.(jpg|jpeg|mp4)$" + regex = "^.*.(jpg|jpeg|mp4|gif)$" def download(self): path = self._download_raw_file(self.url) |