Comment: Fix missing author highlight in Community Tag (#249)
## Issue 238 Comments: author-name not highlighted when in Channel Community tab ## Changes - Channel claims don't have a signing channel. Use `getChannelFromClaim`, which handles both content and channel claim.
This commit is contained in:
parent
ebf81a61c3
commit
7a6a8c2fd7
1 changed files with 3 additions and 1 deletions
|
@ -27,6 +27,7 @@ import CommentMenuList from 'component/commentMenuList';
|
|||
import UriIndicator from 'component/uriIndicator';
|
||||
import CreditAmount from 'component/common/credit-amount';
|
||||
import OptimizedImage from 'component/optimizedImage';
|
||||
import { getChannelFromClaim } from 'util/claim';
|
||||
import { parseSticker } from 'util/comments';
|
||||
|
||||
const AUTO_EXPAND_ALL_REPLIES = false;
|
||||
|
@ -138,7 +139,8 @@ function Comment(props: Props) {
|
|||
const dislikesCount = (othersReacts && othersReacts.dislike) || 0;
|
||||
const totalLikesAndDislikes = likesCount + dislikesCount;
|
||||
const slimedToDeath = totalLikesAndDislikes >= 5 && dislikesCount / totalLikesAndDislikes > 0.8;
|
||||
const commentByOwnerOfContent = claim && claim.signing_channel && claim.signing_channel.permanent_url === authorUri;
|
||||
const contentChannelClaim = getChannelFromClaim(claim);
|
||||
const commentByOwnerOfContent = contentChannelClaim && contentChannelClaim.permanent_url === authorUri;
|
||||
const stickerFromMessage = parseSticker(message);
|
||||
|
||||
let channelOwnerOfContent;
|
||||
|
|
Loading…
Reference in a new issue