Skip to content

Commit

Permalink
Typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tstenner committed Oct 15, 2023
1 parent 3c22d73 commit a2b28ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/info_receiver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ void lsl::info_receiver::info_thread() {
std::string msg = os.str();
info.from_fullinfo_message(msg);
// if this is not a valid streaminfo we retry
if (info.created_at() != 0.0) continue;
if (info.created_at() == 0.0) continue;
// store the result for pickup & return
{
std::lock_guard<std::mutex> lock(fullinfo_mut_);
Expand Down

0 comments on commit a2b28ef

Please sign in to comment.