Skip to content

Commit

Permalink
Allow numbers inside featured mod table name (like 'ladder1v1')
Browse files Browse the repository at this point in the history
  • Loading branch information
micheljung committed Oct 2, 2017
1 parent e667b22 commit f600816
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

@org.springframework.stereotype.Repository
public class LegacyFeaturedModFileRepository implements Repository<FeaturedModFile, Integer> {
private static final Pattern MOD_NAME_PATTERN = Pattern.compile("[a-z]+");
private static final Pattern MOD_NAME_PATTERN = Pattern.compile("[a-z0-9]+");
private final EntityManager entityManager;

public LegacyFeaturedModFileRepository(EntityManager entityManager) {
Expand Down

0 comments on commit f600816

Please sign in to comment.