Log and last fix (#6922)
This commit is contained in:
parent
996fe078e7
commit
e64ade4c25
|
@ -5,7 +5,7 @@ ext {
|
|||
extName = 'Desu'
|
||||
pkgNameSuffix = 'ru.desu'
|
||||
extClass = '.Desu'
|
||||
extVersionCode = 7
|
||||
extVersionCode = 8
|
||||
libVersion = '1.2'
|
||||
}
|
||||
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -5,7 +5,7 @@ ext {
|
|||
extName = 'MangaLib'
|
||||
pkgNameSuffix = 'ru.libmanga'
|
||||
extClass = '.LibManga'
|
||||
extVersionCode = 42
|
||||
extVersionCode = 43
|
||||
libVersion = '1.2'
|
||||
}
|
||||
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue