Fixed issue with site tryinng to load profile pictures without having profile information

Этот коммит содержится в:
Reed Garmsen
2015-08-24 12:58:04 -07:00
родитель 192e18cdd0
Коммит b2c16401c8

Просмотреть файл

@@ -102,7 +102,12 @@ module.exports = React.createClass({
currentUserCss = "current--user";
}
var timestamp = UserStore.getProfile(post.user_id).update_at;
var userProfile = UserStore.getProfile(post.user_id);
var timestamp = UserStore.getCurrentUser().update_at;
if (userProfile) {
timestamp = userProfile.update_at;
}
return (
<div>