| 81 | } |
| 82 | |
| 83 | void IMAPFetchContentToFileOperation::main() |
| 84 | { |
| 85 | ErrorCode error = ErrorNone; |
| 86 | if (mLoadingByChunksEnabled) { |
| 87 | session()->session()->fetchMessageAttachmentToFileByChunksByUID(folder(), mUid, mPartID, |
| 88 | mEstimatedSize, mEncoding, |
| 89 | mFilename, mChunksSize, |
| 90 | this, &error); |
| 91 | } else { |
| 92 | session()->session()->fetchMessageAttachmentToFileByUID(folder(), mUid, mPartID, |
| 93 | mEncoding, mFilename, |
| 94 | this, &error); |
| 95 | } |
| 96 | setError(error); |
| 97 | } |
nothing calls this directly
no test coverage detected