Improvements to query and self event detection, implement all command and debug flags
This commit is contained in:
@@ -23,6 +23,13 @@ def getChansSingle(name, nick):
|
||||
return None
|
||||
return [i.decode() for i in result]
|
||||
|
||||
def getChanList(name, nick):
|
||||
chanspace = "live.chan."+name+"."+nick
|
||||
result = main.r.smembers(chanspace)
|
||||
if len(result) == 0:
|
||||
return None
|
||||
return [i.decode() for i in result]
|
||||
|
||||
def getChans(nick):
|
||||
result = {}
|
||||
for i in main.nets():
|
||||
|
||||
Reference in New Issue
Block a user