fix creating special folders on imap servers with personal namespace set and online dir not sent, 213570 sr=mscott

This commit is contained in:
bienvenu%nventure.com 2004-03-08 21:32:07 +00:00
Родитель ef9e94e02c
Коммит f6e7b01ef8
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -3828,8 +3828,10 @@ nsImapIncomingServer::GetMsgFolderFromURI(nsIMsgFolder *aFolderResource, const c
nsCOMPtr <nsIMsgFolder> folderResource;
folderResource = do_QueryInterface(resource, &rv);
NS_ENSURE_SUCCESS(rv,rv);
}
msgFolder = aFolderResource;
msgFolder = folderResource;
}
else
msgFolder = aFolderResource;
}
NS_IF_ADDREF(*aFolder = msgFolder);