Skip to content

Commit e1fa3c2

Browse files
devondragonclaude
andcommitted
fix: correct special characters escaping in configuration
- Remove unnecessary quotes around special-chars property value - Fix escaping for backslash and quotes in allowed special characters - Ensures proper parsing of special characters configuration The previous format with surrounding quotes could cause parsing issues and prevent certain special characters from being recognized. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 2ba9ade commit e1fa3c2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/resources/config/dsspringuserconfig.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ user.security.password.require-digit=true
111111
# Require at least one special character
112112
user.security.password.require-special=true
113113
# Allowed special characters
114-
user.security.password.special-chars="~`!@#$%^&*()_-+={}[]|\\:;\"'<>,.?/"
114+
user.security.password.special-chars=~`!@#$%^&*()_-+={}[]|\\:;"'<>,.?/
115115
# Prevent use of common passwords (dictionary check)
116116
user.security.password.prevent-common-passwords=true
117117
# Number of previous passwords to prevent reuse

0 commit comments

Comments
 (0)