We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 495faf4 commit 65611c7Copy full SHA for 65611c7
GuiStack/Repositories/IS3Repository.cs
@@ -37,7 +37,7 @@ public interface IS3Repository
37
public class S3Repository : IS3Repository
38
{
39
// https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html
40
- private static readonly Regex InvalidObjectCharsRegex = new Regex("[^A-Z0-9!._*'()-]", RegexOptions.Compiled | RegexOptions.IgnoreCase | RegexOptions.CultureInvariant);
+ private static readonly Regex InvalidObjectCharsRegex = new Regex("[^A-Z0-9!._*'()/-]", RegexOptions.Compiled | RegexOptions.IgnoreCase | RegexOptions.CultureInvariant);
41
42
private S3Authenticator authenticator = new S3Authenticator();
43
private IS3UrlBuilder urlBuilder;
0 commit comments