Skip to content

Commit

Permalink
Merge branch 'v5.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
GioBonvi committed Apr 8, 2020
2 parents 157820f + ead1098 commit d8e3d85
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code.gs
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,9 @@ var settings = {
/* NB: Users shouldn't need to (or want to) touch these settings. They are here for the
* convenience of developers/maintainers only.
*/
version: '5.0.1',
version: '5.0.2',
repoName: 'GioBonvi/GoogleContactsEventsNotifier',
gitHubBranch: 'master'
gitHubBranch: 'development'
}
};

Expand Down Expand Up @@ -604,7 +604,7 @@ MergedContact.prototype.getLines = function (type, date, format) {
line.push(' - ', htmlEscape(_('Years')), ': ');
}
}
line.push(Math.round(date.getYear() - event.getProp('year')));
line.push(Math.round(date.getFullYear() - event.getProp('year')));
}
// Email addresses and phone numbers.
var collected;
Expand Down

0 comments on commit d8e3d85

Please sign in to comment.