Skip to content

Commit

Permalink
Skip tags that don't match format instead of stopping
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacocococo committed Jan 1, 2025
1 parent ab50655 commit 9de2fe5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ private void actuallyCheckForUpdates(){
Matcher matcher=pattern.matcher(tag);
if(!matcher.find()){
//Log.w(TAG, "actuallyCheckForUpdates: release tag has wrong format: "+tag);
return;
continue;
}
int newMajor=Integer.parseInt(matcher.group(1)),
newMinor=Integer.parseInt(matcher.group(2)),
Expand Down

0 comments on commit 9de2fe5

Please sign in to comment.