PLT-5118 moving to last_picture_update for the profile img (#4985)

Этот коммит содержится в:
Corey Hulen
2017-01-06 12:13:22 -05:00
коммит произвёл Joram Wilander
родитель 1aa235b10d
Коммит e82bcea0d0
15 изменённых файлов: 19 добавлений и 19 удалений

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

@@ -150,10 +150,10 @@ export default class Post extends React.Component {
}
let timestamp = 0;
if (!this.props.user || this.props.user.update_at == null) {
timestamp = this.props.currentUser.update_at;
if (!this.props.user || this.props.user.last_picture_update == null) {
timestamp = this.props.currentUser.last_picture_update;
} else {
timestamp = this.props.user.update_at;
timestamp = this.props.user.last_picture_update;
}
let sameUserClass = '';