fix(avatar)

This commit is contained in:
AdrienLSH 2024-02-13 09:53:40 +01:00
parent ec5c7f19c3
commit a63ddad912

View File

@ -24,7 +24,7 @@ class Profiles
let profiles = []
response_data.forEach((profile) => {
profiles.push(new Profile(this.client, profile.username, profile.user_id, profile.avatar_url))
profiles.push(new Profile(this.client, profile.username, profile.user_id, profile.avatar))
});
return profiles;
}