| 42 | } |
| 43 | |
| 44 | void IMAPFetchFoldersOperation::main() |
| 45 | { |
| 46 | ErrorCode error; |
| 47 | if (mFetchSubscribedEnabled) { |
| 48 | mFolders = session()->session()->fetchSubscribedFolders(&error); |
| 49 | } |
| 50 | else { |
| 51 | mFolders = session()->session()->fetchAllFolders(&error); |
| 52 | } |
| 53 | MC_SAFE_RETAIN(mFolders); |
| 54 | setError(error); |
| 55 | } |
nothing calls this directly
no test coverage detected