Skip to content

Commit

Permalink
Fix removal of spaces from name in team parser (#1129)
Browse files Browse the repository at this point in the history
Signed-off-by: Pugzy <[email protected]>
  • Loading branch information
Pugzy authored Feb 4, 2023
1 parent 009b53f commit 91f2d10
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ protected Collection<Team> objects(TeamMatchModule module) {

@Override
protected String getName(Team obj) {
return obj.getNameLegacy().replace(" ", "");
return obj.getNameLegacy();
}

@Override
Expand Down

0 comments on commit 91f2d10

Please sign in to comment.