mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-01-13 06:48:02 -08:00
Update aliyun-sms.js
Add comments for the changed code.
This commit is contained in:
parent
ae2c49a729
commit
2347a01f7c
|
@ -93,6 +93,10 @@ class AliyunSMS extends NotificationProvider {
|
|||
param2[key] = param[key];
|
||||
}
|
||||
|
||||
// Escape more characters than encodeURIComponent does.
|
||||
// For generating Aliyun signature, all characters except A-Za-z0-9~-._ are encoded.
|
||||
// See https://help.aliyun.com/document_detail/315526.html
|
||||
|
||||
let moreEscapesTable = function (m) {
|
||||
return {
|
||||
"!": "%21",
|
||||
|
|
Loading…
Reference in a new issue