Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
tadzik committed Sep 5, 2024
1 parent 8e88e84 commit c4f95c2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/media-proxy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,8 @@ export class MediaProxy {
res.status(statusCode);
getRes.pipe(res);
resolve();
} catch (err: unknown) {
}
catch (err: unknown) {
log.error('Failed to handle authenticated media request:', err);
reject(new ApiError('Failed to handle authenticated media request', ErrCode.Unknown));
}
Expand Down

0 comments on commit c4f95c2

Please sign in to comment.