1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-09-16 18:06:55 +00:00
* Added: Room Actions can now be filtered based on the chat being in Followers-Only Mode or R9K Mode.
* Changed: Custom tool-tips for actions now support variables. Time-out and ban reasons do as well. Text labels do not.
* Fixed: Chat messages from Twitch Extensions not displaying.
This commit is contained in:
SirStendec 2019-08-27 16:18:12 -04:00
parent d150b9720d
commit 6cb585d7d4
9 changed files with 154 additions and 9 deletions

View file

@ -741,7 +741,7 @@ other {# messages were deleted by a moderator.}
if ( ! this.props.installedExtensions.some(val => {
const e = val.extension;
return e && e.clientID === ext.clientID && e.version === ext.version;
return e && (e.clientId || e.clientID) === (ext.clientId || ext.clientID) && e.version === ext.version;
}) )
return null;