We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4ebfbe commit 012cd82Copy full SHA for 012cd82
src/index.ts
@@ -94,7 +94,8 @@ export class TempMail {
94
*/
95
async checkCustomDomainLegacy(domain: string, token: string): Promise<Email[]> {
96
97
- const r = await fetch(`https://api.tempmail.lol/custom/${token}/${domain}`);
+ const raw = (await fetch(`https://api.tempmail.lol/custom/${token}/${domain}`));
98
+ const r = await raw.json();
99
100
let emails: Email[];
101
0 commit comments