From ba12d42d390bdb33cc57903b991b82f7657682f0 Mon Sep 17 00:00:00 2001 From: Daniel Lugo Date: Wed, 24 Jun 2020 17:12:31 -0400 Subject: [PATCH] typo --- services/gunDB/contact-api/actions.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/services/gunDB/contact-api/actions.js b/services/gunDB/contact-api/actions.js index 497cfd98..01c51740 100644 --- a/services/gunDB/contact-api/actions.js +++ b/services/gunDB/contact-api/actions.js @@ -1261,7 +1261,11 @@ const createPost = async (tags, title, content) => { const numOfPages = await (async () => { const maybeNumOfPages = await Utils.tryAndWait( - (_, user) => user.get(Key.NUM_OF_PAGES).then(), + (_, user) => + user + .get(Key.WALL) + .get(Key.NUM_OF_PAGES) + .then(), v => typeof v !== 'number' )