[myhentaigallery] handle whitespace before the title tag

This commit is contained in:
Erik Rimskog
2023-01-06 16:33:04 +01:00
parent d1dd52349a
commit a8a982359e

View File

@@ -44,7 +44,10 @@ class MyhentaigalleryGalleryExtractor(GalleryExtractor):
extr = text.extract_from(page)
split = text.split_html
title = extr('<div class="comic-description">\n<h1>', '</h1>')
title = extr('<div class="comic-description">\n', '</h1>').lstrip()
if title.startswith("<h1>"):
title = title[len("<h1>"):]
if not title:
raise exception.NotFoundError("gallery")