Merge pull request #302 from aiko-chan-ai/dev
fix(ClientUser): Bio is null
This commit is contained in:
commit
ad9d8cc229
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user