From c9fdbecb38c9e2e1afbb552f922556a16b268cf3 Mon Sep 17 00:00:00 2001 From: Gandalf Date: Sun, 7 Dec 2025 15:13:29 +0100 Subject: [PATCH] Fix double-slash URL in hivesense-api requests Remove explicit urlPath from hivesense-api configuration to match the pattern used by hafah-api and hivemind-api. This prevents double-slash URLs (e.g., https://api.hive.blog//hivesense-api/) that occur when the endpoint URL has a trailing slash and wax adds a separator before the urlPath. Without the explicit urlPath, wax uses the object key name 'hivesense-api' as the base path, which handles endpoint URLs consistently regardless of trailing slashes. --- packages/transaction/lib/hive-chain-service.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/transaction/lib/hive-chain-service.ts b/packages/transaction/lib/hive-chain-service.ts index 74f4ff383..ac82bddd6 100644 --- a/packages/transaction/lib/hive-chain-service.ts +++ b/packages/transaction/lib/hive-chain-service.ts @@ -109,7 +109,6 @@ export class HiveChainService { method: "GET" } }, - urlPath: "hivesense-api/", }, method: "GET", 'hivemind-api': { -- GitLab