Tweak collapsing toolbars

This commit is contained in:
Zakhar Timoshenko
2022-07-10 12:51:48 +03:00
parent 5b066c9dde
commit 21891d2d9d
8 changed files with 15 additions and 13 deletions

View File

@@ -10,7 +10,7 @@ class GithubRepository(private val okHttp: OkHttpClient) {
suspend fun getLatestVersion(): AppVersion {
val request = Request.Builder()
.get()
.url("https://api.github.com/repos/nv95/Kotatsu/releases/latest")
.url("https://api.github.com/repos/KotatsuApp/Kotatsu/releases/latest")
val json = okHttp.newCall(request.build()).await().parseJson()
val asset = json.getJSONArray("assets").getJSONObject(0)
return AppVersion(