Skip to content

Commit

Permalink
CHange hasViewers to wait 10 seconds before returning false. 1 second…
Browse files Browse the repository at this point in the history
… seems to be too much.
  • Loading branch information
Isaac Connor committed Aug 29, 2024
1 parent e910259 commit e4543d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/zm_monitor.h
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,7 @@ class Monitor : public std::enable_shared_from_this<Monitor> {
static_cast<int64>(std::chrono::duration_cast<Seconds>(now.time_since_epoch()).count())
-
shared_data->last_viewed_time
) > 1 ? false : true);
) > 10 ? false : true);
}
return false;
}
Expand Down

0 comments on commit e4543d8

Please sign in to comment.