mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
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 =
|
||||
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 =
|
||||
(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) {
|
||||
Update(
|
||||
|
|
Loading…
Reference in a new issue