Merge pull request #168 from lorenzhs/notifications
Notifications: Improve channel detection
This commit is contained in:
commit
83fe15d326
1 changed files with 3 additions and 3 deletions
|
@ -755,10 +755,10 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
|
||||||
/* Function gets called from bufferLineAdded code if user should be notified */
|
/* Function gets called from bufferLineAdded code if user should be notified */
|
||||||
$rootScope.createHighlight = function(buffer, message) {
|
$rootScope.createHighlight = function(buffer, message) {
|
||||||
var title = '';
|
var title = '';
|
||||||
if (buffer.shortName.charAt(0) === '#') {
|
if (['#', '&', '+', '!'].indexOf(buffer.shortName.charAt(0)) < 0) {
|
||||||
title = 'Highlight in ';
|
|
||||||
} else {
|
|
||||||
title = 'Private message from ';
|
title = 'Private message from ';
|
||||||
|
} else {
|
||||||
|
title = 'Highlight in ';
|
||||||
}
|
}
|
||||||
title += buffer.shortName;
|
title += buffer.shortName;
|
||||||
title += buffer.fullName.replace(/irc.([^\.]+)\..+/, " ($1)");
|
title += buffer.fullName.replace(/irc.([^\.]+)\..+/, " ($1)");
|
||||||
|
|
Loading…
Reference in a new issue