mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
FIX: Allow displaying posts by deleted users.
This commit is contained in:
parent
67a5fc39de
commit
dd2605bae7
1 changed files with 6 additions and 4 deletions
|
@ -85,9 +85,11 @@ export default function transformPost(currentUser, site, post, prevPost, nextPos
|
|||
|
||||
const postAtts = transformBasicPost(post);
|
||||
|
||||
const createdBy = details.created_by || {};
|
||||
|
||||
postAtts.topicId = topic.id;
|
||||
postAtts.topicOwner = details.created_by.id === post.user_id;
|
||||
postAtts.topicCreatedById = details.created_by.id;
|
||||
postAtts.topicOwner = createdBy.id === post.user_id;
|
||||
postAtts.topicCreatedById = createdBy.id;
|
||||
postAtts.post_type = postType;
|
||||
postAtts.via_email = post.via_email;
|
||||
postAtts.isModeratorAction = postType === postTypes.moderator_action;
|
||||
|
@ -120,8 +122,8 @@ export default function transformPost(currentUser, site, post, prevPost, nextPos
|
|||
if (showTopicMap) {
|
||||
postAtts.showTopicMap = true;
|
||||
postAtts.topicCreatedAt = topic.created_at;
|
||||
postAtts.createdByUsername = details.created_by.username;
|
||||
postAtts.createdByAvatarTemplate = details.created_by.avatar_template;
|
||||
postAtts.createdByUsername = createdBy.username;
|
||||
postAtts.createdByAvatarTemplate = createdBy.avatar_template;
|
||||
|
||||
postAtts.lastPostUrl = topic.get('lastPostUrl');
|
||||
postAtts.lastPostUsername = details.last_poster.username;
|
||||
|
|
Loading…
Reference in a new issue