From 97a52827d3b579cf80407342a9915d710696e373 Mon Sep 17 00:00:00 2001 From: Liam Fitzgerald Date: Thu, 29 Jul 2021 09:18:54 +1000 Subject: [PATCH] @urbit/api: fix empty getDeepOlderThan --- pkg/npm/api/graph/lib.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/npm/api/graph/lib.ts b/pkg/npm/api/graph/lib.ts index 5ed2898849..23751491d1 100644 --- a/pkg/npm/api/graph/lib.ts +++ b/pkg/npm/api/graph/lib.ts @@ -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)}` });