mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-08-24 23:10:54 +00:00
4.20.50
* Added: Settings for independently changing the colors of chat on Twitch. * Fixed: Incorrect color being applied to Stream Chat. * Changed: Style of in-line message reply tags. * Changed: Set more users to request link info from the API than the socket service. (75% vs old 50%)
This commit is contained in:
parent
c97928fbb7
commit
2cfc613518
10 changed files with 180 additions and 27 deletions
|
@ -338,7 +338,7 @@ export default class ChatLine extends Module {
|
|||
override_mode = t.chat.context.get('chat.filtering.display-deleted'),
|
||||
|
||||
msg = t.chat.standardizeMessage(this.props.message),
|
||||
reply_tokens = reply_mode === 2 ? ( msg.ffz_reply = msg.ffz_reply || t.chat.tokenizeReply(this.props.reply) ) : null,
|
||||
reply_tokens = (reply_mode === 2 || (reply_mode === 1 && this.props.repliesAppearancePreference !== 'expanded')) ? ( msg.ffz_reply = msg.ffz_reply || t.chat.tokenizeReply(this.props.reply) ) : null,
|
||||
is_action = msg.messageType === types.Action,
|
||||
|
||||
user = msg.user,
|
||||
|
@ -520,7 +520,7 @@ other {# messages were deleted by a moderator.}
|
|||
|
||||
let cls = `chat-line__message${show_class ? ' ffz--deleted-message' : ''}${twitch_clickable ? ' tw-relative' : ''}`,
|
||||
out = (tokens.length || ! msg.ffz_type) ? [
|
||||
this.props.showTimestamps && e('span', {
|
||||
(this.props.showTimestamps || this.props.isHistorical) && e('span', {
|
||||
className: 'chat-line__timestamp'
|
||||
}, t.chat.formatTime(msg.timestamp)),
|
||||
//twitch_clickable ?
|
||||
|
@ -864,7 +864,7 @@ other {# messages were deleted by a moderator.}
|
|||
e('div', {
|
||||
className: 'chat-line__message-container'
|
||||
}, [
|
||||
this.renderReplyLine(),
|
||||
this.props.repliesAppearancePreference === 'expanded' ? this.renderReplyLine() : null,
|
||||
out
|
||||
]),
|
||||
e('div', {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue