summaryrefslogtreecommitdiff
path: root/src/lib/http_server.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/http_server.cc')
-rw-r--r--src/lib/http_server.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/http_server.cc b/src/lib/http_server.cc
index c6dcab953..23ac8241d 100644
--- a/src/lib/http_server.cc
+++ b/src/lib/http_server.cc
@@ -102,6 +102,7 @@ HTTPServer::get(string const& url)
if (url == "/") {
auto page = dcp::file_to_string(resources_path() / "web" / "index.html");
boost::algorithm::replace_all(page, "TITLE", variant::dcpomatic_player());
+ boost::algorithm::replace_all(page, "SIDEBAR", dcp::file_to_string(resources_path() / "web" / "sidebar.html"));
return Response(200, page);
} else if (url == "/playlists") {
auto page = dcp::file_to_string(resources_path() / "web" / "playlists.html");