From ff7791e4fe6e4c79ebe739397d25a41791d96aac Mon Sep 17 00:00:00 2001 From: Julian Waller Date: Thu, 23 Nov 2023 15:44:46 +0000 Subject: [PATCH] fix: windows build --- src/modules/html/producer/html_producer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/html/producer/html_producer.cpp b/src/modules/html/producer/html_producer.cpp index 330385f6f5..3297fa11be 100644 --- a/src/modules/html/producer/html_producer.cpp +++ b/src/modules/html/producer/html_producer.cpp @@ -403,7 +403,7 @@ class html_client { std::lock_guard lock(frames_mutex_); - frames_.push(dframe); + frames_.push(std::make_pair(now(), dframe)); while (frames_.size() > frames_max_size_) { frames_.pop(); graph_->set_tag(diagnostics::tag_severity::WARNING, "dropped-frame");