fix:修正tss-http win乱码问题

This commit is contained in:
taynpg 2025-04-29 14:07:46 +08:00
parent b9c7cbba3c
commit b68017bc2a

View File

@ -114,6 +114,10 @@ std::string generate_file_list(const std::string& base_path, const std::string&
</html> </html>
)"; )";
#ifdef _WIN32
html = ansi_to_u8(html);
#endif
return html; return html;
} }