PLT-6689: fix user image requests (#6946)

* fix user image requests

* fix eslint errors and a few more cache busters
Этот коммит содержится в:
Chris
2017-07-19 13:54:16 -07:00
коммит произвёл Christopher Speller
родитель 23a59b03dd
Коммит 673f3a1144
14 изменённых файлов: 39 добавлений и 42 удалений

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

@@ -212,8 +212,6 @@ export default class RhsComment extends React.Component {
const isEphemeral = Utils.isPostEphemeral(post);
const isSystemMessage = PostUtils.isSystemMessage(post);
var timestamp = this.props.currentUser.last_picture_update;
let status = this.props.status;
if (post.props && post.props.from_webhook === 'true') {
status = null;
@@ -277,7 +275,7 @@ export default class RhsComment extends React.Component {
let profilePic = (
<ProfilePicture
src={PostUtils.getProfilePicSrcForPost(post, timestamp)}
src={PostUtils.getProfilePicSrcForPost(post, this.props.user)}
status={status}
width='36'
height='36'
@@ -289,7 +287,7 @@ export default class RhsComment extends React.Component {
if (post.props && post.props.from_webhook) {
profilePic = (
<ProfilePicture
src={PostUtils.getProfilePicSrcForPost(post, timestamp)}
src={PostUtils.getProfilePicSrcForPost(post, this.props.user)}
width='36'
height='36'
/>