Display all parts of message prefix in notification
Previously, we only got the first part -- which would be "@" for an op, and not their nick.
This commit is contained in:
parent
055dc9eba9
commit
4e315b53a8
1 changed files with 5 additions and 1 deletions
|
@ -856,7 +856,11 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
|
||||||
body = message.text;
|
body = message.text;
|
||||||
} else {
|
} else {
|
||||||
title = 'Highlight in ';
|
title = 'Highlight in ';
|
||||||
body = '<' + message.prefix[0].text + '> ' + message.text;
|
var prefix = '';
|
||||||
|
for (var i = 0; i < message.prefix.length; i++) {
|
||||||
|
prefix += message.prefix[i].text;
|
||||||
|
}
|
||||||
|
body = '<' + prefix + '> ' + message.text;
|
||||||
}
|
}
|
||||||
title += buffer.shortName;
|
title += buffer.shortName;
|
||||||
title += buffer.fullName.replace(/irc.([^\.]+)\..+/, " ($1)");
|
title += buffer.fullName.replace(/irc.([^\.]+)\..+/, " ($1)");
|
||||||
|
|
Loading…
Reference in a new issue