We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e462d2 commit d83f847Copy full SHA for d83f847
packages/powersync/lib/src/streaming_sync.dart
@@ -52,8 +52,8 @@ class StreamingSyncImplementation {
52
/// A unique identifier for this streaming sync implementation
53
/// A good value is typically the DB file path which it will mutate when syncing.
54
String? identifier = "unknown"})
55
- : syncMutex = Mutex(identifier: "sync-${identifier}"),
56
- crudMutex = Mutex(identifier: "crud-${identifier}") {
+ : syncMutex = Mutex(identifier: "sync-$identifier"),
+ crudMutex = Mutex(identifier: "crud-$identifier") {
57
_client = client;
58
statusStream = _statusStreamController.stream;
59
}
0 commit comments