Skip to content

Commit

Permalink
Fix DOWNLOAD_LINK string format (#452)
Browse files Browse the repository at this point in the history
Every app release since v1.8.4 puts "-github" before "-release".
  • Loading branch information
luk1337 authored Oct 26, 2021
1 parent 249deac commit dfc95d0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ interface RepositoryModel {
) branch: String?): Call<VersionBase>

companion object {
const val DOWNLOAD_LINK = "https://github.com/AniTrend/anitrend-app/releases/download/%s/app-release%s.apk"
const val DOWNLOAD_LINK = "https://github.com/AniTrend/anitrend-app/releases/download/%s/app%s-release.apk"
}
}

0 comments on commit dfc95d0

Please sign in to comment.