Merge branch 'master' into pr/77

This commit is contained in:
Austin Huang 2020-09-08 15:46:58 -04:00
commit e52c185ffe
No known key found for this signature in database
GPG Key ID: 84C23AA04587A91F
1 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ public final class UpdateChecker extends AsyncTask<Void, Void, Boolean> {
if (responseCode == HttpURLConnection.HTTP_OK) { if (responseCode == HttpURLConnection.HTTP_OK) {
final JSONObject data = new JSONObject(Utils.readFromConnection(conn)); final JSONObject data = new JSONObject(Utils.readFromConnection(conn));
if (BuildConfig.VERSION_CODE < data.getInt("suggestedVersionCode")) { if (BuildConfig.VERSION_CODE < data.getInt("suggestedVersionCode")) {
version = data.getJSONArray("packages").getString("versionName"); version = data.getJSONArray("packages").getJSONObject(0).getString("versionName");
return true; return true;
} }
} }
@ -55,4 +55,4 @@ public final class UpdateChecker extends AsyncTask<Void, Void, Boolean> {
if (result != null && result && fetchListener != null) if (result != null && result && fetchListener != null)
fetchListener.onResult("v"+version); fetchListener.onResult("v"+version);
} }
} }