From 5b6c4758171ce54009a133e399883809b0cdef1f Mon Sep 17 00:00:00 2001 From: Carlos Date: Thu, 12 Oct 2017 18:18:17 -0400 Subject: [PATCH] fixed author/artist not showing for Mangahere. (#1032) --- .../eu/kanade/tachiyomi/source/online/english/Mangahere.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/eu/kanade/tachiyomi/source/online/english/Mangahere.kt b/app/src/main/java/eu/kanade/tachiyomi/source/online/english/Mangahere.kt index 88032abdae..3327360bce 100644 --- a/app/src/main/java/eu/kanade/tachiyomi/source/online/english/Mangahere.kt +++ b/app/src/main/java/eu/kanade/tachiyomi/source/online/english/Mangahere.kt @@ -111,8 +111,8 @@ class Mangahere : ParsedHttpSource() { val infoElement = detailElement.select(".detail_topText").first() val manga = SManga.create() - manga.author = infoElement.select("a[href^=http://www.mangahere.co/author/]").first()?.text() - manga.artist = infoElement.select("a[href^=http://www.mangahere.co/artist/]").first()?.text() + manga.author = infoElement.select("a[href^=//www.mangahere.co/author/]").first()?.text() + manga.artist = infoElement.select("a[href^=//www.mangahere.co/artist/]").first()?.text() manga.genre = infoElement.select("li:eq(3)").first()?.text()?.substringAfter("Genre(s):") manga.description = infoElement.select("#show").first()?.text()?.substringBeforeLast("Show less") manga.status = infoElement.select("li:eq(6)").first()?.text().orEmpty().let { parseStatus(it) }