From c5352e12358c0f85624b9202ecbee1c26d0c2386 Mon Sep 17 00:00:00 2001 From: Kaj Kowalski Date: Tue, 10 Jun 2025 00:09:49 +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 0e72092..16afaa8 100644 --- a/lib/fetchTranscript.ts +++ b/lib/fetchTranscript.ts @@ -21,7 +21,7 @@ export async function fetchTranscriptContent( }); if (!response.ok) { - process.stderr.write(`Error fetching transcript: ${response.statusText}\n`); + process.stderr.write(`Error fetching transcript from ${url}: ${response.statusText}\n`); return null; } return await response.text();