Skip to content

Commit

Permalink
fixed breakage with server rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaronontheweb committed May 6, 2024
1 parent 87c8a0e commit 3ab776f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/DrawTogether.Actors/Local/LocalDrawingSessionActor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,9 @@ protected override void PreStart()
.PreMaterialize(_materializer);

_debouncer = sourceRef;
source.GroupedWithin(10, TimeSpan.FromMilliseconds(75))
source.GroupedWithin(100, TimeSpan.FromMilliseconds(75))
.Select(c => TransmitActions(c.ToList()))
.SelectMany(c => c)
.SelectAsync(1, async c =>
{
try
Expand Down

0 comments on commit 3ab776f

Please sign in to comment.