forked from trent_larson/crowd-funder-for-time-pwa
fix extraction of values from SQLite queries
This commit is contained in:
@@ -145,7 +145,7 @@ export class CapacitorPlatformService implements PlatformService {
|
||||
);
|
||||
result = {
|
||||
columns: [], // SQLite plugin doesn't provide column names
|
||||
values: queryResult.values || [],
|
||||
values: (queryResult.values || []).map((row) => Object.values(row)),
|
||||
};
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user