mirror of
https://github.com/zedeus/nitter
synced 2024-11-21 17:35:22 +01:00
fixed bug that caused everybody to be displayed as verified (#890)
This commit is contained in:
parent
f7e878c126
commit
38985af6ed
@ -33,7 +33,7 @@ proc parseGraphUser(js: JsonNode): User =
|
||||
result = parseUser(user{"legacy"})
|
||||
|
||||
if "is_blue_verified" in user:
|
||||
result.verified = true
|
||||
result.verified = user{"is_blue_verified"}.getBool()
|
||||
|
||||
proc parseGraphList*(js: JsonNode): List =
|
||||
if js.isNull: return
|
||||
|
Loading…
Reference in New Issue
Block a user