EIPs
EIPs copied to clipboard
Config: fix malformed regex pattern in mlc_config.json
Problem: The regex pattern "[]*csl-json"inconfig/mlc_config.jsoncontains an unescaped closing bracket]` within a character class, which can cause incorrect pattern matching behavior.
Solution: Escape the closing bracket to ensure proper regex parsing:
-
Before:
"[]*csl-json"` -
After:
"[]]*csl-json"`
File config/mlc_config.json
Requires 2 more reviewers from @g11tech, @lightclient, @samwilsn, @xinbenlv
leaving to @SamWilsn for taking call on this PR