Skip to content

Commit

Permalink
fix: windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian committed Nov 23, 2023
1 parent 44e7591 commit ff7791e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/html/producer/html_producer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ class html_client
{
std::lock_guard<std::mutex> 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");
Expand Down

0 comments on commit ff7791e

Please sign in to comment.