Skip to content

Commit

Permalink
fix track2Pattern configuration
Browse files Browse the repository at this point in the history
closes #533
  • Loading branch information
ar committed May 6, 2023
1 parent afb3977 commit 9ec7f80
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public void setConfiguration (Configuration cfg) {
}
String t2 = cfg.get("track2-pattern", null);
if (t2 != null) {
track2Pattern = Pattern.compile(t1);
track2Pattern = Pattern.compile(t2);
}
}

Expand Down

0 comments on commit 9ec7f80

Please sign in to comment.