Skip to content

Commit

Permalink
Fix ESLint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
myrotvorets-team committed Jun 17, 2024
1 parent 6083c06 commit 4119f54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/server.mts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export function createServer<C extends Context = Context>(
const url = new URL(req.url, `https://${req.headers.host}`);
if (url.pathname === path) {
const handler = webhookCallback(bot, key ? 'https' : 'http');
handler(req, res);
void handler(req, res);
return;
}
}
Expand Down

0 comments on commit 4119f54

Please sign in to comment.