Fix bug (Hot fix)

This commit is contained in:
March 7th
2022-04-17 22:22:55 +07:00
parent 0ab2f9e729
commit d227e0584b
2 changed files with 2 additions and 6 deletions

View File

@@ -93,11 +93,7 @@ class UserManager extends CachedManager {
const data = await this.client.api.users(id).get();
const userObject = this._add(data, cache);
await userObject.getProfile().catch(() => {});
const noteObject = await this.client.api.users['@me']
.notes(id)
.get()
.catch(() => null);
userObject.note = noteObject?.note ?? null;
// Clear not because event emitted .-. Bug report by https://github.com/aSashaaa
return userObject;
}