Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Do not encodeURIComponent for oldSchoolMailer - Should fix #1138
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Jul 9, 2016
1 parent 2669c45 commit e0d7b8e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion core/src/plugins/action.share/res/react/ShareDialog.js
Expand Up @@ -85,7 +85,6 @@
showMailer:function(subject, message, users = []){
if(ReactModel.Share.forceMailerOldSchool()){
subject = encodeURIComponent(subject);
message = encodeURIComponent(message);
global.location.href = "mailto:custom-email@domain.com?Subject="+subject+"&Body="+message;
return;
}
Expand Down

0 comments on commit e0d7b8e

Please sign in to comment.