From c2f225096dc4fd4fa8a9a78a67732a84d7cb93cf Mon Sep 17 00:00:00 2001 From: Kaj Kowalski Date: Tue, 10 Jun 2025 00:09:54 +0200 Subject: [PATCH] Update lib/fetchTranscript.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- lib/fetchTranscript.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fetchTranscript.ts b/lib/fetchTranscript.ts index 16afaa8..1d67f9d 100644 --- a/lib/fetchTranscript.ts +++ b/lib/fetchTranscript.ts @@ -26,7 +26,7 @@ export async function fetchTranscriptContent( } return await response.text(); } catch (error) { - process.stderr.write(`Failed to fetch transcript: ${error}\n`); + process.stderr.write(`Failed to fetch transcript from ${url}: ${error}\n`); return null; } }