Fix reload message not closing

closes #419
This commit is contained in:
Matthias 2021-07-08 20:21:00 +02:00
parent c931c2c8f8
commit d739d84eba

View File

@ -121,7 +121,7 @@ export default class BotControls extends Vue {
handleReloadConfig() {
this.$bvModal.msgBoxConfirm('Reload configuration?').then((value: boolean) => {
if (value) {
this.handleReloadConfig();
this.reloadConfig();
}
});
}