Hotfix typo again

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

View file

@ -9,7 +9,7 @@ module.exports = class Sync extends Command {
}; }
async exec(message) {
const synced = Util.LBRY.syncPairs(this.client);
const synced = await Util.LBRY.syncPairs(this.client);
return message.channel.createMessage(`Synced ${synced} new pairs.`);
}