@urbit/api: fix empty getDeepOlderThan

This commit is contained in:
Liam Fitzgerald 2021-07-29 09:18:54 +10:00
parent ceed4b78d0
commit 97a52827d3
No known key found for this signature in database
GPG Key ID: D390E12C61D1CFFB

View File

@ -472,7 +472,7 @@ export const getDeepOlderThan = (
) => ({
app: 'graph-store',
path: `/graph/${ship}/${name}/node/siblings` +
`/${start.length > 0 ? 'older' : 'oldest'}` +
`/${start.length > 0 ? 'older' : 'newest'}` +
`/kith/${count}${encodeIndex(start)}`
});