From f5fa17752fd5578ed19684fb91ca472b30776203 Mon Sep 17 00:00:00 2001 From: Anton Strogonoff Date: Tue, 30 Nov 2021 22:30:20 +0100 Subject: [PATCH] chore(download): rephrase LFS response parse error --- src/download.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/download.ts b/src/download.ts index b30edae..06af78d 100644 --- a/src/download.ts +++ b/src/download.ts @@ -95,6 +95,6 @@ export default async function downloadBlobFromPointer( return blob; } else { - throw new Error("LFS response didn’t return an expected structure"); + throw new Error("Unexpected JSON structure received for LFS download request"); } }