Show
Ignore:
Timestamp:
08/10/08 10:30:00 AM (5 months ago)
Author:
octorian
Message:

Added checks for Noinferiors flag (fix for #93)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/LogicMail-1.0/LogicMail/src/org/logicprobe/LogicMail/mail/imap/ImapClient.java

    r246 r269  
    250250            FolderTreeItem childItem = getFolderItem(baseFolder, resp.name, resp.canSelect); 
    251251            baseFolder.addChild(childItem); 
    252             if(resp.hasChildren || !childrenExtension) { 
     252            if(resp.hasChildren || (!resp.noInferiors && !childrenExtension)) { 
    253253                // The folder has children, so lets go and list them 
    254254                if(depth+1 < globalConfig.getImapMaxFolderDepth()) {