Skip to content

Commit

Permalink
fix: android issue
Browse files Browse the repository at this point in the history
  • Loading branch information
riderx committed Aug 15, 2022
1 parent 37e8801 commit 79250b0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ public void onErrorResponse(VolleyError error) {

public BundleInfo getBundleInfo(final String id) {
String trueId = BundleInfo.VERSION_UNKNOWN;
if(id == null) {
if(id != null) {
trueId = id;
}
Log.d(TAG, "Getting info for bundle [" + trueId + "]");
Expand Down

0 comments on commit 79250b0

Please sign in to comment.