aboutsummaryrefslogtreecommitdiffstats
path: root/gallery_dl/extractor/chevereto.py
diff options
context:
space:
mode:
Diffstat (limited to 'gallery_dl/extractor/chevereto.py')
-rw-r--r--gallery_dl/extractor/chevereto.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/gallery_dl/extractor/chevereto.py b/gallery_dl/extractor/chevereto.py
index aedcea4..de22a7b 100644
--- a/gallery_dl/extractor/chevereto.py
+++ b/gallery_dl/extractor/chevereto.py
@@ -57,7 +57,8 @@ class CheveretoImageExtractor(CheveretoExtractor):
image = {
"id" : self.path.rpartition(".")[2],
- "url" : extr('<meta property="og:image" content="', '"'),
+ "url" : (extr('<meta property="og:image" content="', '"') or
+ extr('url: "', '"')),
"album": text.extr(extr("Added to <a", "/a>"), ">", "<"),
"user" : extr('username: "', '"'),
}