File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -135,7 +135,8 @@ class AsyncSqliteDatabase extends WorkerDatabase {
135135 }
136136 database.execute (sql, parameters);
137137 case CustomDatabaseMessageKind .updateSubscriptionManagement:
138- final shouldSubscribe = (message.rawParameters[0 ] as JSBoolean ).toDart;
138+ final shouldSubscribe =
139+ (message.rawParameters.toDart[0 ] as JSBoolean ).toDart;
139140 final id = message.rawSql.toDart;
140141 final state = _findState (connection);
141142
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ description: High-performance asynchronous interface for SQLite on Dart and Flut
33version : 0.11.8
44repository : https://github.com/powersync-ja/sqlite_async.dart
55environment :
6- sdk : " >=3.6 .0 <4.0.0"
6+ sdk : " >=3.5 .0 <4.0.0"
77
88topics :
99 - sqlite
You can’t perform that action at this time.
0 commit comments