-
Notifications
You must be signed in to change notification settings - Fork 72
Open
Description
Hi,
I found our URI contains special character: !'()*.
So could you please add encodeURIComponentRFC3986 function and then replace original encodeURIComponent in utils.coffee?
encodeURIComponentRFC3986: (str) ->
return encodeURIComponent(str).replace(/[!'()*]/g, (c) ->
return '%' + c.charCodeAt(0).toString(16);
);
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels