From 64f34dcae0a69f5732f9298ec3c121e91e388422 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 15 Nov 2025 23:44:45 +0100 Subject: Fix index.html generation, broken since the switch to fmt. --- src/lib/http_server.cc | 4 +++- web/index.html | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/lib/http_server.cc b/src/lib/http_server.cc index cf3f9756a..da495a8aa 100644 --- a/src/lib/http_server.cc +++ b/src/lib/http_server.cc @@ -96,7 +96,9 @@ Response HTTPServer::get(string const& url) { if (url == "/") { - return Response(200, fmt::format(dcp::file_to_string(resources_path() / "web" / "index.html"), variant::dcpomatic_player())); + auto page = dcp::file_to_string(resources_path() / "web" / "index.html"); + boost::algorithm::replace_all(page, "TITLE", variant::dcpomatic_player()); + return Response(200, page); } else if (url == "/api/v1/status") { nlohmann::json json; { diff --git a/web/index.html b/web/index.html index 6dd278e07..bf5359515 100644 --- a/web/index.html +++ b/web/index.html @@ -76,8 +76,8 @@ td { } +TITLE - %1 -- cgit v1.2.3