Skip to content

Commit

Permalink
fix: 5970 - SQLITE error "typo" (#5971)
Browse files Browse the repository at this point in the history
  • Loading branch information
monsieurtanuki authored Nov 30, 2024
1 parent bada2b9 commit 43c6743
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/smooth_app/lib/database/dao_product.dart
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ class DaoProduct extends AbstractSqlDao implements BulkDeletable {
);
} catch (e) {
if (!e.toString().startsWith(
'DatabaseException(near "nulls": syntax error (code 1 SQLITE_ERROR[1])',
'DatabaseException(near "nulls": syntax error (code 1 SQLITE_ERROR',
)) {
rethrow;
}
Expand Down

0 comments on commit 43c6743

Please sign in to comment.