Merge branch 'hotfix-gmail-report'

This commit is contained in:
Stefan Zermatten
2015-06-12 08:04:23 +02:00
2 changed files with 10 additions and 0 deletions

View File

@@ -51,6 +51,9 @@ Meteor.methods({
user.emails &&
user.emails[0] &&
user.emails[0].address ||
user.services &&
user.services.google &&
user.services.google.email ||
"reports@dicecloud.com";
var bodyText = "Report ID: " + id +
"\nSeverity: " + report.severity +

View File

@@ -151,3 +151,10 @@ ChangeLogs.insert({
"Fixed rounding error on net worth calculation",
],
});
ChangeLogs.insert({
version: "0.5.5",
changes: [
"Fixed reports from google users not correctly storing the reply-to email address",
],
});