Skip to content
This repository was archived by the owner on Aug 27, 2025. It is now read-only.

Commit 87919a6

Browse files
committed
fix: links linkType
1 parent a8bb5f7 commit 87919a6

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/models/character.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,14 @@ export async function getMintedNotes(input: {
8282
export const getFollowings = (characterId: number) => {
8383
return indexer.getLinks(characterId, {
8484
limit: 0,
85+
linkType: "follow",
8586
})
8687
}
8788

8889
export const getFollowers = (characterId: number) => {
8990
return indexer.getBacklinksOfCharacter(characterId, {
9091
limit: 0,
92+
linkType: "follow",
9193
})
9294
}
9395

0 commit comments

Comments
 (0)