From 5ecb48c772175d2208855f1b09863eee38911e2b Mon Sep 17 00:00:00 2001 From: MarekWo Date: Mon, 16 Mar 2026 21:30:32 +0100 Subject: [PATCH] fix(api): fix NameError on out_path variable rename Variable was renamed to out_path_raw but one reference was missed. Co-Authored-By: Claude Opus 4.6 --- app/routes/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routes/api.py b/app/routes/api.py index b2831e4..eac323b 100644 --- a/app/routes/api.py +++ b/app/routes/api.py @@ -2400,7 +2400,7 @@ def get_contacts_detailed_api(): 'type': details.get('type'), 'flags': details.get('flags'), 'out_path_len': out_path_len, - 'out_path': out_path, + 'out_path': out_path_raw, 'last_advert': details.get('last_advert'), 'adv_lat': details.get('adv_lat'), 'adv_lon': details.get('adv_lon'),