Fix bug where updateNickSpeak would fail on lines without a prefix
This commit is contained in:
parent
6812501f12
commit
36a35628e2
1 changed files with 4 additions and 0 deletions
|
@ -92,6 +92,10 @@ models.service('models', ['$rootScope', '$filter', function($rootScope, $filter)
|
|||
var updateNickSpeak = function(line) {
|
||||
// Try to find nick from prefix
|
||||
var prefix = line.prefix;
|
||||
if (prefix.length === 0) {
|
||||
// some scripts produce lines without a prefix
|
||||
return;
|
||||
}
|
||||
var nick = prefix[prefix.length - 1].text;
|
||||
// Action / me, find the nick as the first word of the message
|
||||
if (nick === " *") {
|
||||
|
|
Loading…
Reference in a new issue