diff --git a/src/structures/ClientUser.js b/src/structures/ClientUser.js index 61a2f0e..7427dfc 100644 --- a/src/structures/ClientUser.js +++ b/src/structures/ClientUser.js @@ -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; + } } /**