Skip to content

Commit

Permalink
fix: 5970 - SQLITE error "typo"
Browse files Browse the repository at this point in the history
  • Loading branch information
monsieurtanuki committed Nov 30, 2024
1 parent a5e056d commit 1924c1d
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 1924c1d

Please sign in to comment.