use backticks instead of double quotes to avoid escaped additionally in regex

This commit is contained in:
bingoohuang
2021-02-18 14:05:28 +08:00
parent 12a7833586
commit eab6e31d34
4 changed files with 4 additions and 4 deletions

View File

@@ -62,7 +62,7 @@ func init() {
}}
}
var fileNameEscaper = strings.NewReplacer("\\", "\\\\", "\"", "\\\"")
var fileNameEscaper = strings.NewReplacer(`\`, `\\`, `"`, `\"`)
// Upload sends a POST request to a volume server to upload the content with adjustable compression level
func UploadData(uploadUrl string, filename string, cipher bool, data []byte, isInputCompressed bool, mtype string, pairMap map[string]string, jwt security.EncodedJwt) (uploadResult *UploadResult, err error) {