import command
This commit is contained in:
parent
bd8d5f1ca2
commit
376f2d75ac
@ -90,3 +90,6 @@ Import configuration and data from old versions of the bot.
|
||||
[COMMAND_IMPORT_ERROR]
|
||||
Error during import, contact a developer about this issue:
|
||||
{message}
|
||||
|
||||
[COMMAND_IMPORT_SUCCESS]
|
||||
Successfully imported settings!
|
@ -49,6 +49,7 @@ class ImportCommand extends SlashCommand {
|
||||
database: dbs[version], // Default to v3
|
||||
version
|
||||
});
|
||||
|
||||
await migrator.connect();
|
||||
let imported = null;
|
||||
try {
|
||||
@ -56,8 +57,9 @@ class ImportCommand extends SlashCommand {
|
||||
} catch (err) {
|
||||
return { index: 'COMMAND_IMPORT_ERROR', params: { message: err.message }, emoji: 'failure' };
|
||||
}
|
||||
console.log(imported);
|
||||
console.log(settings);
|
||||
|
||||
await guild.updateSettings(imported);
|
||||
return { index: 'COMMAND_IMPORT_SUCCESS', emoji: 'success' };
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user