From ee2852357e20fff4df39d7ecd728249e69d89430 Mon Sep 17 00:00:00 2001 From: Karchnu Date: Thu, 23 Jul 2020 21:42:27 +0200 Subject: [PATCH] Don't allow to break the loop. --- src/ipc/context.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ipc/context.cr b/src/ipc/context.cr index 3d1c5b8..0315f32 100644 --- a/src/ipc/context.cr +++ b/src/ipc/context.cr @@ -88,7 +88,7 @@ class IPC::Context @timer = @base_timer end - break if yield wait_event + yield wait_event end end