copy eslint + tslint from Discord.js (v13)
This commit is contained in:
@@ -93,7 +93,10 @@ 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);
|
||||
const noteObject = await this.client.api.users['@me']
|
||||
.notes(id)
|
||||
.get()
|
||||
.catch(() => null);
|
||||
userObject.note = noteObject?.note ?? null;
|
||||
return userObject;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user