Mail tree phase2:

- Fix mail tree gets stalled after adding new account
This commit is contained in:
Hadi Nategh 2015-08-13 08:55:11 +00:00
parent 949ea0c000
commit 40e0a2b705

View File

@ -766,7 +766,16 @@ class mail_ui
if (!empty($_folderName)) $fetchCounters = true;
$data = $this->mail_tree->getTree($nodeID,$_profileID,0, false,$subscribedOnly,!$this->mail_bo->mailPreferences['showAllFoldersInFolderPane']);
// Check if it is called for refresh root
// then we need to reinitialized the index tree
if(!$nodeID && !$_profileID)
{
$data = $this->mail_tree->getInitialIndexTree(null,null,null,null,true,!$this->mail_bo->mailPreferences['showAllFoldersInFolderPane']);
}
else
{
$data = $this->mail_tree->getTree($nodeID,$_profileID,0, false,$subscribedOnly,!$this->mail_bo->mailPreferences['showAllFoldersInFolderPane']);
}
if (!is_null($_nodeID)) return $data;
etemplate_widget_tree::send_quote_json($data);
}