Skip to content

Commit aa6f631

Browse files
author
Mike Patnode
committed
Make % safe
1 parent 5391b8a commit aa6f631

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ class S3Adapter {
196196
break;
197197
case 'safe':
198198
// eslint-disable-next-line no-control-regex
199-
regex = /^[_a-zA-Z0-9][a-zA-Z0-9@. ~_\-/$&\x00-\x1F\x7F=;:+,?]*$/;
199+
regex = /^[_a-zA-Z0-9][a-zA-Z0-9@. ~_\-/$&\x00-\x1F\x7F=;:+,?%]*$/;
200200
break;
201201
case 'strict':
202202
default:

0 commit comments

Comments
 (0)