fix(validation): update regex for directory validation in WebSocket utility

- Modified the regex pattern in the `readValidDirectory` function to allow for a wider range of characters, including colons, improving the validation of directory names.
- This change enhances input integrity by ensuring valid directory formats are accepted.
This commit is contained in:
Mauricio Siu
2026-05-11 13:34:13 -06:00
parent 2f08b33931
commit 282d358d04
2 changed files with 2 additions and 2 deletions

View File

@@ -40,7 +40,7 @@ export const readValidDirectory = (
directory: string,
serverId?: string | null,
) => {
if (!/^[\w/. -]{1,500}$/.test(directory)) {
if (!/^[\w/. :-]{1,500}$/.test(directory)) {
return false;
}