Skip to content

Commit 718c764

Browse files
authored
Update Linkwarden.ts
1 parent fb29e2b commit 718c764

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/adapters/Linkwarden.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ export default class LinkwardenAdapter implements Adapter, IResource<typeof Item
193193
const links = []
194194
let response
195195
do {
196-
({ data } = await this.sendRequest('GET', `/api/v1/links?cursor=${links.length ? links[links.length - 1].id : ''}`))
196+
({ data } = await this.sendRequest('GET', `/api/v1/search?cursor=${links.length ? links[links.length - 1].id : ''}`))
197197
links.push(...data.links)
198198
} while (response.length !== 0)
199199

0 commit comments

Comments
 (0)