Fix nicklist grouping of users with the + prefix.
The wrong comparison operator was used. Most likely a leftover from when the function used power levels directly.
This commit is contained in:
parent
397acef2bd
commit
16825451c7
1 changed files with 1 additions and 1 deletions
|
@ -667,7 +667,7 @@ class WeechatChannelBuffer(object):
|
||||||
group_name = "000|o"
|
group_name = "000|o"
|
||||||
elif user.prefix == "@":
|
elif user.prefix == "@":
|
||||||
group_name = "001|h"
|
group_name = "001|h"
|
||||||
elif user.prefix > "+":
|
elif user.prefix == "+":
|
||||||
group_name = "002|v"
|
group_name = "002|v"
|
||||||
|
|
||||||
return group_name
|
return group_name
|
||||||
|
|
Loading…
Add table
Reference in a new issue