Solution?
parent
dd1dacfe30
commit
1bae7f52a2
|
@ -39,7 +39,7 @@ export default class Parseall extends Command {
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
const parsed: Promise<{status: 'fulfilled', value: Certificate}>[] | Promise<{status: 'rejected', reason: Error}>[] = await Promise.allSettled(certificates);
|
const parsed: Promise<{status: 'fulfilled', value: Certificate}>[] | Promise<{status: 'rejected', reason: Error}>[] = await Promise.allSettled(certificates);
|
||||||
|
|
||||||
const final = search.map(async (a) => {
|
const final = await search.map(async (a) => {
|
||||||
const result = await parsed[search.findIndex((acc) => acc === a)];
|
const result = await parsed[search.findIndex((acc) => acc === a)];
|
||||||
if (result.status === 'rejected') {
|
if (result.status === 'rejected') {
|
||||||
if (result.reason.message.includes('no such file or directory') || result.reason.message.includes('File doesn\'t exist.')) return `${this.client.stores.emojis.error} **${a.username}** Unable to locate certificate`;
|
if (result.reason.message.includes('no such file or directory') || result.reason.message.includes('File doesn\'t exist.')) return `${this.client.stores.emojis.error} **${a.username}** Unable to locate certificate`;
|
||||||
|
|
Loading…
Reference in New Issue