1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-09-17 02:16:54 +00:00
* Added: Support for the new Mod View.
* Fixed: Changes to chat room state not updating room actions correctly.
* Fixed: Chat room state not being detected correctly when the client loads.
This commit is contained in:
SirStendec 2020-03-31 18:14:27 -04:00
parent 0c1e9c5204
commit 99eee7396d
7 changed files with 78 additions and 25 deletions

View file

@ -49,7 +49,7 @@ export default class ChatLine extends Module {
this.WhisperLine = this.fine.define(
'whisper-line',
n => n.props && n.props.message && n.props.reportOutgoingWhisperRendered
n => n.props && n.props.message && has(n.props, 'reportOutgoingWhisperRendered')
)
}