We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98d73e2 commit 227f416Copy full SHA for 227f416
packages/powersync_core/lib/src/web/sync_worker_protocol.dart
@@ -328,8 +328,8 @@ extension type SerializedSyncStatus._(JSObject _) implements JSObject {
328
},
329
streamSubscriptions: switch (streamSubscriptions) {
330
null => null,
331
- final serialized => (json.decode(serialized) as List)
332
- .map((e) => CoreActiveStreamSubscription.fromJson(
+ final serialized => (json.decode(serialized) as List?)
+ ?.map((e) => CoreActiveStreamSubscription.fromJson(
333
e as Map<String, Object?>))
334
.toList(),
335
0 commit comments