1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-09-16 18:06:55 +00:00

3.5.185. Fixes for Twitch changes.

This commit is contained in:
SirStendec 2016-05-24 19:24:45 -04:00
parent 11164648e9
commit 574d627f79
3 changed files with 58 additions and 7 deletions

View file

@ -608,14 +608,14 @@ FFZ.prototype.setup_line = function() {
this.log("Hooking the Ember Message Line component.");
var MLine = utils.ember_resolve('component:message-line');
var MLine = utils.ember_resolve('component:chat/message-line');
if ( MLine )
this._modify_chat_subline(MLine);
else
this.error("Couldn't find the Message Line component.");
this.log("Hooking the Ember Whisper Line component.");
var WLine = utils.ember_resolve('component:whisper-line');
var WLine = utils.ember_resolve('component:chat/whisper-line');
if ( WLine )
this._modify_chat_subline(WLine);
else