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 8360248 commit d6928ddCopy full SHA for d6928dd
packages/powersync_core/lib/src/database/powersync_db_mixin.dart
@@ -484,7 +484,7 @@ mixin PowerSyncDatabaseMixin implements SqliteConnection {
484
/// Get an unique id for this client.
485
/// This id is only reset when the database is deleted.
486
Future<String> getClientId() async {
487
- _checkSchemaIsReady(); // TODO(skilldevs): Needed?
+ _checkSchemaIsReady();
488
final row = await get('SELECT powersync_client_id() as client_id');
489
return row['client_id'] as String;
490
}
0 commit comments