From 1a7fd55bc5d077849a039b32b4e2db21ba6d21a1 Mon Sep 17 00:00:00 2001 From: Snazzah Date: Thu, 10 Jun 2021 18:27:11 -0500 Subject: [PATCH] Hotfix typo --- src/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.js b/src/util.js index 785118f..854e037 100644 --- a/src/util.js +++ b/src/util.js @@ -227,7 +227,7 @@ Util.LBRY = { const accounts = await response.json(); let syncedAccounts = 0; - for (const account of accounts.results.items) { + for (const account of accounts.result.items) { if (/\d{17,19}/.test(account.name)) { if (await client.sqlite.get(account.name)) continue; await client.sqlite.pair(account.name, account.id);