mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 08:49:13 +00:00
fix(filters): postgres dl limits check (#308)
This commit is contained in:
parent
6675a1df3e
commit
f67c92340a
1 changed files with 1 additions and 1 deletions
|
@ -693,7 +693,7 @@ func (r *FilterRepo) downloadsByFilterPostgres(ctx context.Context, tx *Tx, filt
|
||||||
COALESCE(SUM(CASE WHEN "release".timestamp >= date_trunc('month', CURRENT_DATE) THEN 1 ELSE 0 END),0) as "month_count",
|
COALESCE(SUM(CASE WHEN "release".timestamp >= date_trunc('month', CURRENT_DATE) THEN 1 ELSE 0 END),0) as "month_count",
|
||||||
count(*) as "total_count"
|
count(*) as "total_count"
|
||||||
FROM "release"
|
FROM "release"
|
||||||
WHERE "release".filter_id = ?;`
|
WHERE "release".filter_id = $1;`
|
||||||
|
|
||||||
row := tx.QueryRowContext(ctx, query, filterID)
|
row := tx.QueryRowContext(ctx, query, filterID)
|
||||||
if err := row.Err(); err != nil {
|
if err := row.Err(); err != nil {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue