1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-08 15:20:55 +00:00

4.0.0-rc17

* Added: Highlight messages based on usernames and badges.
* Added: Block messages based on usernames and badges.

* Fixed: Display the number of months a subscriber has subscribed in badge tool-tips.
* Fixed: Rendering of chat messages sent from Twitch Extensions.
This commit is contained in:
SirStendec 2019-04-28 17:28:16 -04:00
parent b9cca1053d
commit 1649294bde
10 changed files with 809 additions and 82 deletions

View file

@ -185,10 +185,10 @@ export default class Room {
if ( id && typeof id === 'number' )
id = `${id}`;
if ( this.user_ids[id] )
if ( id && this.user_ids[id] )
user = this.user_ids[id];
else if ( this.users[login] && ! no_login )
else if ( login && this.users[login] && ! no_login )
user = this.users[login];
if ( user && user.destroyed )