aboutsummaryrefslogtreecommitdiff
path: root/importer/providers/raw_image_base.py
diff options
context:
space:
mode:
authorgabrielgio <gabriel.giovanini@pm.me>2021-07-26 22:28:05 +0200
committergabrielgio <gabriel.giovanini@pm.me>2021-07-26 22:36:04 +0200
commitc8bd60648d193f85479d5f380b05bb6d4394ffda (patch)
treebf28d510da708ce45c39a6e3accdc514a6b2cd1c /importer/providers/raw_image_base.py
parentbf0cde0b0bb77cd75db03327a461abf26b90c465 (diff)
downloadreddit-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.py2
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)