Skip to content

Commit

Permalink
Properly initial prepend source. Fixes: #3125
Browse files Browse the repository at this point in the history
  • Loading branch information
toots committed Jun 3, 2023
1 parent ed5b71c commit f3df74f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/core/operators/prepend.ml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,11 @@ class prepend ~merge source f =
end;
state <- `Idle

method private register a = a#get_ready activation
method private register a =
Clock.unify a#clock source#clock;
Typing.(a#frame_type <: self#frame_type);
a#get_ready activation

method private unregister a = a#leave (self :> source)
end

Expand Down

0 comments on commit f3df74f

Please sign in to comment.