summaryrefslogtreecommitdiff
path: root/web-ui/app/js/services
diff options
context:
space:
mode:
authorLisa Junger <ljunger@thoughtworks.com>2014-10-24 17:37:44 +0200
committerAlexandre Pretto Nunes <anunes@thoughtworks.com>2014-12-03 15:47:21 -0200
commit6c5e6a65ed543193f676f601741fb597dc48e5dd (patch)
treec11576f32808289131a9816d5cb99dcdd424a2db /web-ui/app/js/services
parentf7472aed29c525bc630fe1ea05833f840bc42dc4 (diff)
Don't use to address for reply all.
Diffstat (limited to 'web-ui/app/js/services')
-rw-r--r--web-ui/app/js/services/model/mail.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web-ui/app/js/services/model/mail.js b/web-ui/app/js/services/model/mail.js
index 3fa3ceca..f2103262 100644
--- a/web-ui/app/js/services/model/mail.js
+++ b/web-ui/app/js/services/model/mail.js
@@ -71,7 +71,7 @@ define(['helpers/contenttype'],
function replyToAllAddress() {
return {
- to: normalize([this.header.reply_to, this.header.from, this.header.to]),
+ to: normalize([this.header.reply_to, this.header.from]),
cc: normalize(this.header.cc)
};
}