diff --git a/chorus-lib/src/store/mod.rs b/chorus-lib/src/store/mod.rs index 12def8d..a4d8d55 100644 --- a/chorus-lib/src/store/mod.rs +++ b/chorus-lib/src/store/mod.rs @@ -300,7 +300,7 @@ impl Store { // If we have gone beyond since, we can stop early // (We have to check because `since` might change in this loop) if event.created_at() < since { - continue 'per_event; + break 'per_event; } // check against the rest of the filter @@ -374,7 +374,7 @@ impl Store { // If we have gone beyond since, we can stop early // (We have to check because `since` might change in this loop) if event.created_at() < since { - continue 'per_event; + break 'per_event; } // check against the rest of the filter @@ -442,7 +442,7 @@ impl Store { // If we have gone beyond since, we can stop early // (We have to check because `since` might change in this loop) if event.created_at() < since { - continue 'per_event; + break 'per_event; } // check against the rest of the filter