From 53cda734e5c7e1d0ee70e1e7e2e22b541556410f Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Thu, 5 Jul 2018 20:35:38 -0600 Subject: [PATCH] Minor bugfix --- core/msg_list.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/msg_list.js b/core/msg_list.js index 05b48ab9..d4798012 100644 --- a/core/msg_list.js +++ b/core/msg_list.js @@ -132,6 +132,8 @@ exports.getModule = class MessageListModule extends MessageAreaConfTempSwitcher( } }, deleteMessageNo : (formData, extraArgs, cb) => { + const msgListView = this.viewControllers.allViews.getView(MciViewIds.allViews.msgList); + this.enableMessageListIndexUpdates(msgListView); return cb(null); } };