mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
fix: try to fetch user collection info for anonymous user
This commit is contained in:
parent
7effb886f4
commit
58f5c9ce7c
1 changed files with 1 additions and 0 deletions
|
@ -146,6 +146,7 @@ const AddReleaseToCollectionModal = (props: {
|
||||||
profile_id: number;
|
profile_id: number;
|
||||||
}) => {
|
}) => {
|
||||||
const getKey = (pageIndex: number, previousPageData: any) => {
|
const getKey = (pageIndex: number, previousPageData: any) => {
|
||||||
|
if (!props.token) return null;
|
||||||
if (previousPageData && !previousPageData.content.length) return null;
|
if (previousPageData && !previousPageData.content.length) return null;
|
||||||
return `${ENDPOINTS.collection.userCollections}/${props.profile_id}/${pageIndex}?token=${props.token}`;
|
return `${ENDPOINTS.collection.userCollections}/${props.profile_id}/${pageIndex}?token=${props.token}`;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue