Merge pull request #302 from aiko-chan-ai/dev

fix(ClientUser): Bio is null
This commit is contained in:
Cinnamon
2022-09-11 23:19:57 +07:00
committed by GitHub

View File

@@ -38,12 +38,12 @@ class ClientUser extends User {
// Todo: Add (Selfbot)
if ('premium_type' in data) {
const nitro = NitroType[data.premium_type];
const nitro = NitroType[data.premium_type ?? 0];
/**
* Nitro type of the client user.
* @type {NitroType}
*/
this.nitroType = nitro ?? `UNKNOWN_${data.premium_type}`;
this.nitroType = nitro ?? `UNKNOWN_TYPE_${data.premium_type}`;
}
if ('purchased_flags' in data) {
/**
@@ -74,6 +74,9 @@ class ClientUser extends User {
*/
this.emailAddress = data.email;
}
if ('bio' in data) {
this.bio = data.bio;
}
}
/**