Fix malformed extension URLs
(cherry picked from commit 95ce0e39efa1d93def8ad20578d8ad93ffbcb716) # Conflicts: # app/src/main/java/eu/kanade/tachiyomi/extension/api/ExtensionGithubApi.kt
This commit is contained in:
parent
4e026c1cf1
commit
f4549c5910
1 changed files with 1 additions and 1 deletions
|
|
@ -90,7 +90,7 @@ internal class ExtensionGithubApi {
|
|||
val lang = element.jsonObject["lang"]!!.jsonPrimitive.content
|
||||
val nsfw = element.jsonObject["nsfw"]!!.jsonPrimitive.int == 1
|
||||
// SY -->
|
||||
val icon = "$repoUrl/icon/${apkName.replace(".apk", ".png")}"
|
||||
val icon = "${repoUrl}/icon/${apkName.replace(".apk", ".png")}"
|
||||
// SY <--
|
||||
|
||||
Extension.Available(name, pkgName, versionName, versionCode, lang, nsfw, apkName, icon /* SY --> */, repoUrl /* SY <-- */)
|
||||
|
|
|
|||
Loading…
Reference in a new issue