Revert "adding debounce" cus it's not working

This reverts commit 1d27db960c.

# Conflicts:
#	src/bot.js
This commit is contained in:
Aster Fialla
2026-02-23 11:18:59 -05:00
parent bfb5bf9cbb
commit c752ee2bf2
6 changed files with 11 additions and 16 deletions

View File

@@ -54,7 +54,7 @@ cmds.set('import', {
if ((message.content.includes('--help') || (args[0] === '' && args.length === 1)) && !attachmentUrl ) {
return await message.reply(enums.help.IMPORT);
}
return await importHelper.debounceImport(message.author.id, attachmentUrl).then(async (successfullyAdded) => {
return await importHelper.pluralKitImport(message.author.id, attachmentUrl).then(async (successfullyAdded) => {
await message.reply(successfullyAdded);
}).catch(async (error) => {
if (error instanceof AggregateError) {