diff options
author | Chocobozzz <me@florianbigard.com> | 2022-03-18 11:17:35 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-03-18 11:21:50 +0100 |
commit | 57e4e1c1a95c3a81a967f54ecc2a510d8b0e129c (patch) | |
tree | fcf12670d643ec4a3b5eccdfa834227c0417d988 /server/helpers | |
parent | 2e3f7a5a6fbae276d3ba1cb1b08289917ec7604b (diff) | |
download | PeerTube-57e4e1c1a95c3a81a967f54ecc2a510d8b0e129c.tar.gz PeerTube-57e4e1c1a95c3a81a967f54ecc2a510d8b0e129c.tar.zst PeerTube-57e4e1c1a95c3a81a967f54ecc2a510d8b0e129c.zip |
Don't store remote rates of remote videos
In the future we'll stop to expose all available rates to improve users
privacy
Diffstat (limited to 'server/helpers')
-rw-r--r-- | server/helpers/activitypub.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/server/helpers/activitypub.ts b/server/helpers/activitypub.ts index d0bcc6785..9d6d8b2fa 100644 --- a/server/helpers/activitypub.ts +++ b/server/helpers/activitypub.ts | |||
@@ -154,7 +154,9 @@ async function activityPubCollectionPagination ( | |||
154 | id: baseUrl, | 154 | id: baseUrl, |
155 | type: 'OrderedCollectionPage', | 155 | type: 'OrderedCollectionPage', |
156 | totalItems: result.total, | 156 | totalItems: result.total, |
157 | first: baseUrl + '?page=1' | 157 | first: result.data.length === 0 |
158 | ? undefined | ||
159 | : baseUrl + '?page=1' | ||
158 | } | 160 | } |
159 | } | 161 | } |
160 | 162 | ||