mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-07 07:36:20 +01:00
Fixes a discrepancy between corp and alliance mode, causing all characters to appear double in corporation mode.
This commit is contained in:
@@ -21,7 +21,7 @@ class EveWhoManager():
|
||||
page_count=0
|
||||
while len(data["characters"]):
|
||||
for row in data["characters"]:
|
||||
members[row["character_id"]] = {"name":row["name"], "id":row["character_id"]}
|
||||
members[int(row["character_id"])] = {"name":row["name"], "id":int(row["character_id"])}
|
||||
page_count=page_count+1
|
||||
jsondata = requests.get(url + "&page=%i" % page_count).content
|
||||
data = json.loads(jsondata.decode())
|
||||
|
||||
Reference in New Issue
Block a user