Skip to content

Commit 20ff2cd

Browse files
committed
fix: skip packages missing dpkg version
1 parent 53bad00 commit 20ff2cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sql.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ FROM
347347
package_errors
348348
) error ON error.package = v_packages.name
349349
WHERE
350-
full_version IS NOT null
350+
full_version IS NOT NULL and dpkg_version IS NOT NULL
351351
ORDER BY
352352
commit_time DESC,
353353
name ASC

0 commit comments

Comments
 (0)