Hotfix typo

This commit is contained in:
Snazzah 2021-06-10 18:27:11 -05:00
parent 342e288624
commit 1a7fd55bc5
No known key found for this signature in database
GPG key ID: 5E71D54F3D86282E

View file

@ -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);