Fixed whois issue logs

This commit is contained in:
Juan Gilsanz Polo 2022-11-30 23:35:31 +01:00
parent c03d536bc8
commit a3e3c67c1c
2 changed files with 24 additions and 12 deletions

View file

@ -148,7 +148,7 @@ class ClientInfo {
});
factory ClientInfo.fromJson(Map<String, dynamic> json) => ClientInfo(
whois: Whois.fromJson(json["whois"]),
whois: Whois.fromJson(Map<String, dynamic>.from(json["whois"])),
name: json["name"],
disallowedRule: json["disallowed_rule"],
disallowed: json["disallowed"],