Fix online info
This commit is contained in:
@@ -11,7 +11,7 @@ def annotate_results(results_parsed):
|
||||
"""
|
||||
# Figure out items with net (not discord)
|
||||
nets = set()
|
||||
for x in results_parsed:
|
||||
for x in results_parsed["object_list"]:
|
||||
if "net" in x:
|
||||
nets.add(x["net"])
|
||||
|
||||
@@ -21,7 +21,7 @@ def annotate_results(results_parsed):
|
||||
set(
|
||||
[
|
||||
x["nick"]
|
||||
for x in results_parsed
|
||||
for x in results_parsed["object_list"]
|
||||
if {"nick", "src", "net"}.issubset(x)
|
||||
and x["src"] == "irc"
|
||||
and x["net"] == net
|
||||
@@ -32,7 +32,7 @@ def annotate_results(results_parsed):
|
||||
set(
|
||||
[
|
||||
x["channel"]
|
||||
for x in results_parsed
|
||||
for x in results_parsed["object_list"]
|
||||
if {"channel", "src", "net"}.issubset(x)
|
||||
and x["src"] == "irc"
|
||||
and x["net"] == net
|
||||
@@ -44,7 +44,7 @@ def annotate_results(results_parsed):
|
||||
num_users = annotate_num_users(net, channels)
|
||||
# Annotate the number channels the user is on
|
||||
num_chans = annotate_num_chans(net, nicks)
|
||||
for item in results_parsed:
|
||||
for item in results_parsed["object_list"]:
|
||||
if "net" in item:
|
||||
if item["net"] == net:
|
||||
if "nick" in item:
|
||||
|
||||
Reference in New Issue
Block a user