Skip to content

Commit 9abca62

Browse files
committed
merge #7379: [everia] fix 'title' extraction
2 parents dcaf729 + ecf6966 commit 9abca62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gallery_dl/extractor/everia.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def items(self):
5757

5858
data = {
5959
"title": text.unescape(
60-
text.extr(page, 'itemprop="headline">', "</h1>")),
60+
text.extr(page, 'itemprop="headline">', "</h")),
6161
"tags": list(text.extract_iter(page, 'rel="tag">', "</a>")),
6262
"post_url": url,
6363
"post_category": text.extr(

0 commit comments

Comments
 (0)