From 2dfa1c41f76292326741e1a2f5ef90ebf644830f Mon Sep 17 00:00:00 2001 From: Matt Jenkins Date: Thu, 4 Jun 2026 16:51:33 +0100 Subject: [PATCH] Fixed bad body call --- lib/Archive.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Archive.php b/lib/Archive.php index dc32807..1d345d3 100644 --- a/lib/Archive.php +++ b/lib/Archive.php @@ -63,7 +63,7 @@ class Archive { if ($resp == 200) { return true; } - throw new Exception($resp->body); + throw new Exception($req->body); } static function metadata($identifier) {