Bugfix for StaticThemeProvider: Regex for filtering themes was missing some characters
parent
d6d3f232bb
commit
06922b6425
|
|
@ -123,7 +123,7 @@ public class StaticThemeProvider implements ThemeProvider {
|
||||||
.stream()
|
.stream()
|
||||||
.filter(themePackage -> {
|
.filter(themePackage -> {
|
||||||
return themePackage
|
return themePackage
|
||||||
.matches(THEMES_PACKAGE + "/([\\w\\d\\s\\.])*/theme.json");
|
.matches(THEMES_PACKAGE + "/([\\w\\d\\s\\.\\-_])*/theme.json");
|
||||||
})
|
})
|
||||||
// .map(themePackage -> {
|
// .map(themePackage -> {
|
||||||
// return themePackage
|
// return themePackage
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue