Skip to content

Commit

Permalink
fix: seeder file names (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
beryxz authored Mar 21, 2023
1 parent 3b936fa commit 2e1bfa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/cys4/seed/RegexSeeder.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ private static List<RegexEntity> fill(String[] regexFiles) {
}

public static List<RegexEntity> getGeneralRegexes() {
return fill(new String[]{"regex_general.json", "regex_token.json", "regex_url.json"});
return fill(new String[]{"regex_general.jsonc", "regex_token.jsonc", "regex_url.jsonc"});
}

public static List<RegexEntity> getExtensionRegexes() {
Expand Down

0 comments on commit 2e1bfa1

Please sign in to comment.