Skip to content
This repository was archived by the owner on Mar 11, 2021. It is now read-only.

Commit 013e78f

Browse files
authored
Merge pull request #3 from Re-Volt/work
Bumped app version to R19.0310
2 parents d3178cf + d553e7b commit 013e78f

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed
0 Bytes
Binary file not shown.

.idea/caches/gradle_models.ser

0 Bytes
Binary file not shown.

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ android {
66
applicationId "io.github.tavisco.rvglassistant"
77
minSdkVersion 21
88
targetSdkVersion 28
9-
versionCode 3
10-
versionName "R18.0930"
9+
versionCode 4
10+
versionName "R19.0310"
1111
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1212
vectorDrawables.useSupportLibrary = true
1313
}

app/src/main/java/io/github/tavisco/rvglassistant/objects/adapters/IOPackageViewItem.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,14 @@ public void bindView(final IOPackageViewItem viewItem, final List<Object> payloa
119119
item.setRemoteVersionChecked(true);
120120
bindView(viewItem,payloads);
121121
}
122-
}, error -> Log.d(Constants.TAG, String.format("Error while making request to %s", rvioRequest)));
122+
},
123+
error -> {
124+
Log.d(Constants.TAG, String.format("Error while making request to %s", rvioRequest));
125+
item.setRemoteVersion("???");
126+
item.setRemoteVersionChecked(true);
127+
bindView(viewItem,payloads);
128+
}
129+
);
123130

124131
// Add the request to the RequestQueue.
125132
stringRequest.setShouldCache(false);

last_version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
R18.0930
1+
R19.0310

0 commit comments

Comments
 (0)