Fix issue where 'delete messages' was not clickable second time

This commit is contained in:
Scott Nonnenberg 2019-04-04 15:33:04 -07:00
parent c8ea2e9463
commit 629dc8737b

View file

@ -1428,7 +1428,7 @@
await this.confirm(i18n('deleteConversationConfirmation')); await this.confirm(i18n('deleteConversationConfirmation'));
try { try {
await this.model.destroyMessages(); await this.model.destroyMessages();
this.remove(); this.unload('delete messages');
} catch (error) { } catch (error) {
window.log.error( window.log.error(
'destroyMessages: Failed to successfully delete conversation', 'destroyMessages: Failed to successfully delete conversation',