From 8e042ae6f1ee2bb2099e1da5dd53172778cafffd Mon Sep 17 00:00:00 2001 From: Tindy X <49061470+tindy2013@users.noreply.github.com> Date: Sun, 25 May 2025 15:32:13 +0800 Subject: [PATCH] Fix icon-url not correctly appended to generated Surge configs --- src/generator/config/subexport.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/generator/config/subexport.cpp b/src/generator/config/subexport.cpp index 099cd7d..d2fa870 100644 --- a/src/generator/config/subexport.cpp +++ b/src/generator/config/subexport.cpp @@ -1051,7 +1051,7 @@ std::string proxyToSurge(std::vector &nodes, const std::string &base_conf { std::string content = trim(vArray[vArray.size() - 1]); if(content.find("icon-url") == 0) - group += content; + group += "," + content; } }