From c70695f33091a0d416d96e15d506a6f121e66af5 Mon Sep 17 00:00:00 2001 From: padreug Date: Tue, 11 Nov 2025 01:33:18 +0100 Subject: [PATCH] Fix get_all_accounts() URL (remove double /api) --- fava_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fava_client.py b/fava_client.py index 213c4ac..9dacf0a 100644 --- a/fava_client.py +++ b/fava_client.py @@ -836,7 +836,7 @@ class FavaClient: try: # Use Fava's /api/accounts endpoint async with httpx.AsyncClient(timeout=self.timeout) as client: - response = await client.get(f"{self.base_url}/api/accounts") + response = await client.get(f"{self.base_url}/accounts") response.raise_for_status() accounts_data = response.json()