We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bdd4f2 commit 30cb95aCopy full SHA for 30cb95a
helpers/ipc-client.js
@@ -87,7 +87,7 @@ module.exports.load = (discordClient) => {
87
const { premiumLogs } = discordClient.config;
88
const aLogs = discordClient.channels.cache.get(premiumLogs);
89
if (!aLogs) return console.log(`Shard #${discordClient.shard.ids[0]}: PayPal Notif, channel logs can not be found`);
90
- const user = discordClient.users.fetch(message.data.userID).catch(() => {});
+ const user = await discordClient.users.fetch(message.data.userID).catch(() => {});
91
if (!user) return console.log(`Shard #${discordClient.shard.ids[0]}: PayPal Notif, user can not be found ${message.data.userID}`);
92
switch (message.data.notificationType) {
93
case "verification": {
0 commit comments