fix parser адаптера

This commit is contained in:
Artem Tsyrulnikov
2026-01-18 13:38:25 +03:00
parent 68e7dc4158
commit d8202e1141
2 changed files with 4 additions and 4 deletions

View File

@@ -30,7 +30,7 @@ func (d *Database) GetTrackedPosts(ctx context.Context, channel domain.Channel)
) as views
FROM post p
INNER JOIN channel c ON c.id = p.channel_id
INNER JOIN placement pl ON pl.post_id = p.id
INNER JOIN placement_post pp ON pp.post_id = p.id
WHERE p.channel_id = $1
AND p.deleted_from_channel_at IS NULL;`