Skip to content

Commit

Permalink
Merge branch 'main' into feature/update-vue-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
open-hippy authored Sep 22, 2023
2 parents a976bf7 + 5ead86c commit a4e138d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion modules/footstone/src/task_runner.cc
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,9 @@ TimeDelta TaskRunner::GetNextTimeDelta(TimePoint now) {

void TaskRunner::NotifyWorker() {
auto worker = worker_.lock();
FOOTSTONE_CHECK(worker);
if (!worker) {
return;
}
worker->Notify();
}

Expand Down

0 comments on commit a4e138d

Please sign in to comment.