forked from recloudstream/cloudstream
fix inappupdater maybe
This commit is contained in:
parent
daa397ff60
commit
e68fda7d82
1 changed files with 8 additions and 2 deletions
|
@ -167,10 +167,16 @@ class InAppUpdater {
|
||||||
val tagResponse =
|
val tagResponse =
|
||||||
parseJson<GithubTag>(app.get(tagUrl, headers = headers).text)
|
parseJson<GithubTag>(app.get(tagUrl, headers = headers).text)
|
||||||
|
|
||||||
Log.d(LOG_TAG, "Fetched GitHub tag: ${tagResponse.github_object.sha.take(8)}")
|
Log.d(LOG_TAG, "Fetched GitHub tag: ${tagResponse.github_object.sha.take(7)}")
|
||||||
|
|
||||||
val shouldUpdate =
|
val shouldUpdate =
|
||||||
(getString(R.string.commit_hash) != tagResponse.github_object.sha.take(8))
|
(getString(R.string.commit_hash)
|
||||||
|
.trim {c->c.isWhitespace()}
|
||||||
|
.take(7)
|
||||||
|
!=
|
||||||
|
tagResponse.github_object.sha
|
||||||
|
.trim {c->c.isWhitespace()}
|
||||||
|
.take(7))
|
||||||
|
|
||||||
return@runBlocking if (foundAsset != null) {
|
return@runBlocking if (foundAsset != null) {
|
||||||
Update(
|
Update(
|
||||||
|
|
Loading…
Reference in a new issue