From 1bdf6ca2bbff346de4094db37829fb7d07a5445d Mon Sep 17 00:00:00 2001 From: nathan Date: Thu, 10 Oct 2024 11:48:22 -0600 Subject: [PATCH] Mail: Fix deleting account did not update tree --- mail/js/app.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mail/js/app.js b/mail/js/app.js index 270ad85c8d..d6b0cd316b 100755 --- a/mail/js/app.js +++ b/mail/js/app.js @@ -657,6 +657,8 @@ app.classes.mail = AppJS.extend( var tree = this.et2 ? this.et2.getWidgetById(this.nm_index+'[foldertree]') : null; if (!tree) break; var node = tree.getNode(_id); + // Make sure ID is a string, that's what tree uses + _id = "" + _id; switch(_type) { case 'delete':