Fix missing slash in api endpoint (#7271)
* Fix missing slash in api endpoint * Bump version number
This commit is contained in:
parent
71907f4cae
commit
0dae3e2d7d
|
@ -32,7 +32,7 @@ abstract class Guya(
|
|||
|
||||
override val supportsLatest = false
|
||||
|
||||
private val scanlatorCacheUrl = "$baseUrl/api/get_all_groups"
|
||||
private val scanlatorCacheUrl = "$baseUrl/api/get_all_groups/"
|
||||
|
||||
override fun headersBuilder() = Headers.Builder().apply {
|
||||
add(
|
||||
|
|
|
@ -9,7 +9,7 @@ class GuyaGenerator : ThemeSourceGenerator {
|
|||
|
||||
override val themeClass = "Guya"
|
||||
|
||||
override val baseVersionCode: Int = 1
|
||||
override val baseVersionCode: Int = 2
|
||||
|
||||
override val sources = listOf(
|
||||
SingleLang("Guya", "https://guya.moe", "en", overrideVersionCode = 18),
|
||||
|
|
Loading…
Reference in New Issue