Skip to content

Commit

Permalink
Merge pull request #9 from AOSC-Dev/fix-list-json
Browse files Browse the repository at this point in the history
Fix list.json
  • Loading branch information
jiegec authored Aug 4, 2024
2 parents 772c78b + 73a124f commit 9dcd38c
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 31 deletions.
29 changes: 0 additions & 29 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ tokio = { version = "^1", features = ["macros", "rt-multi-thread"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
sqlx = { version = "0.6", features = [
"sqlite",
"postgres",
"runtime-tokio-rustls",
"time"
Expand Down
2 changes: 1 addition & 1 deletion src/sql.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ SELECT
p.commit_time,
p.committer,
dpkg.dpkg_version dpkg_version,
group_concat(DISTINCT dpkg.reponame) dpkg_availrepos,
array_to_string(array_agg(DISTINCT dpkg.reponame), ',') dpkg_availrepos,
coalesce(
CASE
WHEN dpkg.dpkg_version IS NOT null THEN (CASE WHEN
Expand Down

0 comments on commit 9dcd38c

Please sign in to comment.