add ignores for impossible cases

This commit is contained in:
Michael C
2022-09-25 02:04:51 -04:00
parent 9ca087206e
commit 005ae2c9fb
3 changed files with 4 additions and 4 deletions

View File

@@ -21,7 +21,7 @@ export async function getIsUserVIP(req: Request, res: Response): Promise<Respons
hashedUserID: hashedUserID,
vip: vipState,
});
} catch (err) {
} catch (err) /* instanbul ignore next */ {
Logger.error(err as string);
return res.sendStatus(500);
}