mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 12:49:37 +03:00
Fix moderator shield showing incorrectly.
It was being shown for all messages if you're a moderator, instead of just being shown on messages from moderators.
This commit is contained in:
parent
58805f0000
commit
c3f9f24624
1 changed files with 4 additions and 8 deletions
|
@ -7,7 +7,7 @@ import {
|
|||
messageBubbleColorForHue,
|
||||
textColorForHue,
|
||||
} from '../../utils/user-colors.js';
|
||||
import { convertToText } from '../../utils/chat.js';
|
||||
import { convertToText, checkIsModerator } from '../../utils/chat.js';
|
||||
import { SOCKET_MESSAGE_TYPES } from '../../utils/websocket.js';
|
||||
import { getDiffInDaysFromNow } from '../../utils/helpers.js';
|
||||
import ModeratorActions from './moderator-actions.js';
|
||||
|
@ -42,12 +42,8 @@ export default class ChatMessageView extends Component {
|
|||
render() {
|
||||
const { message, isModerator, accessToken } = this.props;
|
||||
const { user, timestamp } = message;
|
||||
const {
|
||||
displayName,
|
||||
displayColor,
|
||||
createdAt,
|
||||
isModerator: isAuthorModerator,
|
||||
} = user;
|
||||
const { displayName, displayColor, createdAt } = user;
|
||||
const isAuthorModerator = checkIsModerator(message);
|
||||
|
||||
const isMessageModeratable =
|
||||
isModerator && message.type === SOCKET_MESSAGE_TYPES.CHAT;
|
||||
|
@ -75,7 +71,7 @@ export default class ChatMessageView extends Component {
|
|||
isMessageModeratable ? 'moderatable' : ''
|
||||
}`;
|
||||
|
||||
const messageAuthorFlair = isModerator
|
||||
const messageAuthorFlair = isAuthorModerator
|
||||
? html`<img
|
||||
class="flair"
|
||||
title="Moderator"
|
||||
|
|
Loading…
Reference in a new issue