-
-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Description
The current code has the following flow. The maximum length of the pattern cannot exceed 100 characters. This is problematic because if I want to match a specific pattern, such as "^https://www.akamai.com/newsroom/press-release/state-of-the-internet-security-retail-attacks-and-api-traffic", the program doesn't allow for that.
// Apply length limits for safety
if (pattern.length > 100) {
console.warn(
`Pattern exceeds maximum safe length: ${pattern.substring(0, 50)}...`
)
return null
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels