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 c23e5ce commit 09a266eCopy full SHA for 09a266e
src/bot/acceptReviewRequest.ts
@@ -47,11 +47,9 @@ export const acceptReviewRequest = {
47
try {
48
const review = await activeReviewRepo.getReviewByThreadIdOrFail(threadId);
49
if (review.pdfIdentifier) {
50
- blocks.push(
51
- textBlock(
52
- `HackerRank PDF: <${await generateHackParserPresignedURL(review.pdfIdentifier)}|${review.pdfIdentifier}>`,
53
- ),
54
- );
+ const url = await generateHackParserPresignedURL(review.pdfIdentifier);
+ log.e(url);
+ blocks.push(textBlock(`HackerRank PDF: <${url}|${review.pdfIdentifier}>`));
55
56
const codeKeys = await listHackParserCodeKeys(review.pdfIdentifier);
57
if (codeKeys.length) {
0 commit comments