Skip to content

Commit

Permalink
Fix bad type. (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
floitsch authored Nov 6, 2023
1 parent 8b90acb commit f61458e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/provider.toit
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class WatchdogServiceProvider extends ServiceProvider
stop-system-watchdog-if-possible_:
if not system-watchdog-task_: return

needs-watching := dogs_.any: | dog/Watchdog | not dog.is-stopped
needs-watching := dogs_.any: | _ dog/Watchdog | not dog.is-stopped
if needs-watching: return

// Shutdown the system watchdog.
Expand Down

0 comments on commit f61458e

Please sign in to comment.