Browse Source
Merge branch 'master' into pr/77
renovate/org.robolectric-robolectric-4.x
Austin Huang
4 years ago
No known key found for this signature in database
GPG Key ID: 84C23AA04587A91F
1 changed files with
2 additions and
2 deletions
-
app/src/main/java/awais/instagrabber/utils/UpdateChecker.java
|
|
@ -37,7 +37,7 @@ public final class UpdateChecker extends AsyncTask<Void, Void, Boolean> { |
|
|
|
if (responseCode == HttpURLConnection.HTTP_OK) { |
|
|
|
final JSONObject data = new JSONObject(Utils.readFromConnection(conn)); |
|
|
|
if (BuildConfig.VERSION_CODE < data.getInt("suggestedVersionCode")) { |
|
|
|
version = data.getJSONArray("packages").getString("versionName"); |
|
|
|
version = data.getJSONArray("packages").getJSONObject(0).getString("versionName"); |
|
|
|
return true; |
|
|
|
} |
|
|
|
} |
|
|
@ -55,4 +55,4 @@ public final class UpdateChecker extends AsyncTask<Void, Void, Boolean> { |
|
|
|
if (result != null && result && fetchListener != null) |
|
|
|
fetchListener.onResult("v"+version); |
|
|
|
} |
|
|
|
} |
|
|
|
} |