From dca3e8bae20939d2872408941a659105c6e47198 Mon Sep 17 00:00:00 2001 From: neatnoise Date: Wed, 22 Apr 2026 20:42:04 +0200 Subject: [PATCH] fix(network): restore ExternalIP in server info response (#5043) --- src/nvhttp.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/nvhttp.cpp b/src/nvhttp.cpp index 03c1e26a..4db8c6e4 100644 --- a/src/nvhttp.cpp +++ b/src/nvhttp.cpp @@ -761,6 +761,10 @@ namespace nvhttp { } tree.put("root.ServerCodecModeSupport", codec_mode_flags); + if (!config::nvhttp.external_ip.empty()) { + tree.put("root.ExternalIP", config::nvhttp.external_ip); + } + auto current_appid = proc::proc.running(); tree.put("root.PairStatus", pair_status); tree.put("root.currentgame", current_appid);