Merge pull request #570 from TeamPiped/subscriptions-fix

Subscriptions fix
This commit is contained in:
Kavin 2023-04-27 08:11:14 +01:00 committed by GitHub
commit 54ae19d142
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

@ -424,7 +424,7 @@ public class FeedHandlers {
CriteriaBuilder cb = s.getCriteriaBuilder();
var query = cb.createQuery(Channel.class);
var root = query.from(Channel.class);
var subquery = query.subquery(User.class);
var subquery = query.subquery(String.class);
var subroot = subquery.from(User.class);
subquery.select(subroot.get("subscribed_ids"))

View file

@ -104,6 +104,9 @@ curl "${CURLOPTS[@]}" $HOST/import -X POST -H "Content-Type: application/json" -
# Wait 2s to allow the subscription request to be processed
sleep 2
# Check Subscriptions
curl "${CURLOPTS[@]}" $HOST/subscriptions -H "Authorization: $AUTH_TOKEN" || exit 1
# Check Feed
curl "${CURLOPTS[@]}" $HOST/feed -G --data-urlencode "authToken=$AUTH_TOKEN" || exit 1