Log and last fix (#6922)

This commit is contained in:
Eugene 2021-05-09 23:48:20 +05:00 committed by GitHub
parent 996fe078e7
commit e64ade4c25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'Desu'
pkgNameSuffix = 'ru.desu'
extClass = '.Desu'
extVersionCode = 7
extVersionCode = 8
libVersion = '1.2'
}

View File

@ -28,10 +28,10 @@ class DesuActivity : Activity() {
try {
startActivity(mainIntent)
} catch (e: ActivityNotFoundException) {
Log.e("RemangaActivity", e.toString())
Log.e("DesuActivity", e.toString())
}
} else {
Log.e("RemangaActivity", "could not parse uri from intent $intent")
Log.e("DesuActivity", "could not parse uri from intent $intent")
}
finish()

View File

@ -5,7 +5,7 @@ ext {
extName = 'MangaLib'
pkgNameSuffix = 'ru.libmanga'
extClass = '.LibManga'
extVersionCode = 42
extVersionCode = 43
libVersion = '1.2'
}

View File

@ -86,7 +86,7 @@ class LibManga : ConfigurableSource, HttpSource() {
element.select("a").first().let { link ->
manga.setUrlWithoutDomain(link.attr("href"))
manga.title = element.select("h4").first().text()
manga.title = element.select(".updates__name_rus").first().text()
}
return manga
}