Skip to content

Commit f618585

Browse files
committed
Merge branch 'develop' of github.com:vector-im/vector-web into develop
2 parents 7c6fb36 + 351a94b commit f618585

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/skins/vector/views/atoms/MessageTimestamp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ module.exports = React.createClass({
4545
return days[date.getDay()] + ", " + months[date.getMonth()] + " " + (date.getDay()+1) + " " + pad(date.getHours()) + ':' + pad(date.getMinutes());
4646
}
4747
else {
48-
return days[date.getDay()] + ", " + months[date.getMonth()] + " " + (date.getDay()+1) + " " + date().getFullYear() + " " + pad(date.getHours()) + ':' + pad(date.getMinutes());
48+
return days[date.getDay()] + ", " + months[date.getMonth()] + " " + (date.getDay()+1) + " " + date.getFullYear() + " " + pad(date.getHours()) + ':' + pad(date.getMinutes());
4949
}
5050
},
5151

0 commit comments

Comments
 (0)