Skip to content

Commit 4abeb7b

Browse files
committed
format
1 parent 23d6ffa commit 4abeb7b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/powersync_core/lib/src/sync/streaming_sync.dart

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,11 @@ final class _ActiveRustStreamingIteration {
598598
Future<void> syncIteration() async {
599599
try {
600600
await _control(
601-
'start', convert.json.encode({'parameters': sync.options.params, 'schema': convert.json.decode(sync.schemaJson),}));
601+
'start',
602+
convert.json.encode({
603+
'parameters': sync.options.params,
604+
'schema': convert.json.decode(sync.schemaJson),
605+
}));
602606
assert(_completedStream.isCompleted, 'Should have started streaming');
603607
await _completedStream.future;
604608
} finally {

0 commit comments

Comments
 (0)