From a2f1ecb0848119f08ac332979ebc37270c6f960b Mon Sep 17 00:00:00 2001 From: Chris Galvan Date: Thu, 18 Jul 2024 13:33:27 -0500 Subject: [PATCH] Added navigator.userAgent to custom user agent for maps requests --- src/maps.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/maps.ts b/src/maps.ts index 61e3c41..e1884ee 100644 --- a/src/maps.ts +++ b/src/maps.ts @@ -70,7 +70,7 @@ class MigrationMap { return { url: url, headers: { - "X-Amz-User-Agent": `migration-adapter-${PACKAGE_VERSION}`, + "X-Amz-User-Agent": `${navigator.userAgent} migration-adapter-${PACKAGE_VERSION}`, }, }; };