chore: format
This commit is contained in:
parent
d36b855457
commit
1cbb3086fa
1 changed files with 6 additions and 6 deletions
|
@ -1503,7 +1503,7 @@ export default class Misskey implements MegalodonInterface {
|
||||||
// ======================================
|
// ======================================
|
||||||
public async getPoll(_id: string): Promise<Response<Entity.Poll>> {
|
public async getPoll(_id: string): Promise<Response<Entity.Poll>> {
|
||||||
const res = await this.getStatus(_id);
|
const res = await this.getStatus(_id);
|
||||||
if (res.data.poll == null) throw new Error("poll not found");
|
if (res.data.poll == null) throw new Error('poll not found');
|
||||||
return { ...res, data: res.data.poll };
|
return { ...res, data: res.data.poll };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1513,7 +1513,7 @@ export default class Misskey implements MegalodonInterface {
|
||||||
public async votePoll(_id: string, choices: Array<number>): Promise<Response<Entity.Poll>> {
|
public async votePoll(_id: string, choices: Array<number>): Promise<Response<Entity.Poll>> {
|
||||||
if (!_id) {
|
if (!_id) {
|
||||||
return new Promise((_, reject) => {
|
return new Promise((_, reject) => {
|
||||||
const err = new ArgumentError("id is required");
|
const err = new ArgumentError('id is required');
|
||||||
reject(err);
|
reject(err);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -1523,11 +1523,11 @@ export default class Misskey implements MegalodonInterface {
|
||||||
noteId: _id,
|
noteId: _id,
|
||||||
choice: +c,
|
choice: +c,
|
||||||
};
|
};
|
||||||
await this.client.post<{}>("/api/notes/polls/vote", params);
|
await this.client.post<{}>('/api/notes/polls/vote', params);
|
||||||
}
|
}
|
||||||
|
|
||||||
const res = await this.client
|
const res = await this.client
|
||||||
.post<MisskeyAPI.Entity.Note>("/api/notes/show", {
|
.post<MisskeyAPI.Entity.Note>('/api/notes/show', {
|
||||||
noteId: _id,
|
noteId: _id,
|
||||||
})
|
})
|
||||||
.then(async (res) => {
|
.then(async (res) => {
|
||||||
|
@ -1540,11 +1540,11 @@ export default class Misskey implements MegalodonInterface {
|
||||||
|
|
||||||
if (!res.data) {
|
if (!res.data) {
|
||||||
return new Promise((_, reject) => {
|
return new Promise((_, reject) => {
|
||||||
const err = new UnexpectedError("poll does not exist");
|
const err = new UnexpectedError('poll does not exist');
|
||||||
reject(err);
|
reject(err);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
return { ...res, data: res.data };
|
return { ...res, data: res.data };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue