Skip to content

Commit

Permalink
Merge branch 'hotfix-gmail-report'
Browse files Browse the repository at this point in the history
  • Loading branch information
ThaumRystra committed Jun 12, 2015
2 parents a09bad2 + 9d2eb14 commit 89f03c7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions rpg-docs/Model/Meta/Reports.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ Meteor.methods({
user.emails &&
user.emails[0] &&
user.emails[0].address ||
user.services &&
user.services.google &&
user.services.google.email ||
"[email protected]";
var bodyText = "Report ID: " + id +
"\nSeverity: " + report.severity +
Expand Down
7 changes: 7 additions & 0 deletions rpg-docs/private/changeLogs/changeLogs.js
Original file line number Diff line number Diff line change
Expand Up @@ -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",
],
});

0 comments on commit 89f03c7

Please sign in to comment.