Skip to content

Commit

Permalink
Fix RegEx group for GOKb-Feedback (follow-up of #274)
Browse files Browse the repository at this point in the history
  • Loading branch information
philboeselager committed Oct 29, 2020
1 parent 394c41b commit 717466b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class SendPackageThreadGokb extends UploadThreadGokb{
// get count from finished process
Matcher matcher = INT_FROM_MESSAGE_REGEX.matcher(message)
if (matcher.find()){
Integer foundInt = Integer.valueOf(matcher.group(1))
Integer foundInt = Integer.valueOf(matcher.group(2))
if (foundInt != null){
count = foundInt
}
Expand Down

0 comments on commit 717466b

Please sign in to comment.