do not trigger unread for lines tagged with notify_none
This commit is contained in:
parent
a82ca40db8
commit
34b5d84d53
1 changed files with 1 additions and 1 deletions
|
@ -289,7 +289,7 @@ weechat.factory('handlers', ['$rootScope', 'colors', 'pluginManager', function($
|
|||
buffer_line['message'] = message;
|
||||
|
||||
|
||||
if (!_isActiveBuffer(buffer) && !initial) {
|
||||
if (!_isActiveBuffer(buffer) && !initial && !_.contains(tags_array, 'notify_none')) {
|
||||
|
||||
if ($rootScope.buffers[buffer]['unread'] == '') {
|
||||
$rootScope.buffers[buffer]['unread'] = 1;
|
||||
|
|
Loading…
Reference in a new issue