From 1122b4198f2c5bc27f9f4e3f3aedea6c81f09ba1 Mon Sep 17 00:00:00 2001 From: DebaucheryLibrarian Date: Thu, 31 Oct 2024 03:24:30 +0100 Subject: [PATCH] Fixed unprint response property. --- geo.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geo.mjs b/geo.mjs index df12279..b8c7f02 100644 --- a/geo.mjs +++ b/geo.mjs @@ -38,7 +38,7 @@ export async function resolvePlace(query, context, options = {}) { concurrency: 1, }); - const [item] = res.body; + const [item] = res.data; if (item && item.address) { const rawPlace = item.address;