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 удалений

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

@@ -99,7 +99,7 @@ export default class RhsRootPost extends React.Component {
var isOwner = this.props.currentUser.id === post.user_id;
var isAdmin = TeamStore.isTeamAdminForCurrentTeam() || UserStore.isSystemAdminForCurrentUser();
const isSystemMessage = post.type && post.type.startsWith(Constants.SYSTEM_MESSAGE_PREFIX);
var timestamp = user ? user.update_at : 0;
var timestamp = user ? user.last_picture_update : 0;
var channel = ChannelStore.get(post.channel_id);
const flagIcon = Constants.FLAG_ICON_SVG;