Replace information_popup_type_filter occurences with correct naming
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
0319ce5079
commit
b072c1390b
2 changed files with 3 additions and 2 deletions
|
@ -653,7 +653,7 @@ or the way messages are displayed.
|
|||
A list of message types that should make the information buffer grow
|
||||
Possible values: ``error``, ``roster``, ``warning``, ``info``, ``help``
|
||||
|
||||
information_popup_type_filter
|
||||
information_buffer_type_filter
|
||||
|
||||
**Default value:** ``[empty]``
|
||||
|
||||
|
|
|
@ -1429,7 +1429,8 @@ class Core(object):
|
|||
filter_types = config.get('information_buffer_type_filter').split(':')
|
||||
if typ.lower() in filter_types:
|
||||
log.debug(
|
||||
'Did not show the message:\n\t%s> %s \n\tdue to information_popup_type_filter configuration',
|
||||
'Did not show the message:\n\t%s> %s \n\tdue to '
|
||||
'information_buffer_type_filter configuration',
|
||||
typ, msg)
|
||||
return False
|
||||
filter_messages = config.get('filter_info_messages').split(':')
|
||||
|
|
Loading…
Reference in a new issue