From a71707f17468e7b6f500a283ffadce6edbb375b1 Mon Sep 17 00:00:00 2001 From: Andrey Petelin Date: Mon, 15 Sep 2025 19:22:52 +0500 Subject: [PATCH] fix: Use correct variable for detour service address --- podkop/files/usr/bin/podkop | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/podkop/files/usr/bin/podkop b/podkop/files/usr/bin/podkop index 32592a4..83a6955 100755 --- a/podkop/files/usr/bin/podkop +++ b/podkop/files/usr/bin/podkop @@ -1375,7 +1375,7 @@ get_service_proxy_address() { local detour config_get_bool detour "main" "detour" 0 if [ "$detour" -eq 1 ]; then - echo "$SB_SERVICE_MIXED_INBOUND_TAG:$SB_SERVICE_MIXED_INBOUND_PORT" + echo "$SB_SERVICE_MIXED_INBOUND_ADDRESS:$SB_SERVICE_MIXED_INBOUND_PORT" else echo "" fi