Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Favoriting an article causes all articles to show as favorited: true #16

Open
prscoelho opened this issue Sep 17, 2023 · 0 comments
Open

Comments

@prscoelho
Copy link

Favoriting an article causes all articles to show as favorited: true.

Hi! I'm tinkering around with my own frontend implementation and I grabbed this repo to use as a local backend to run requests against. So I know that this repo hasn't been touched in a while, I question if I should even open this issue..

Seems to be solved by changing:

exists(select 1 from article_favorite where user_id = $1) "favorited!",

to:

exists(select 1 from article_favorite where user_id = $1 and article_id = article.article_id) "favorited!",

But it might be wrong, I'm not a backend dev. Thanks for your work and the very educational repo.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant