aboutsummaryrefslogtreecommitdiffhomepage
path: root/example/mac/macExample/macExample/MCTMsgViewController.m
diff options
context:
space:
mode:
Diffstat (limited to 'example/mac/macExample/macExample/MCTMsgViewController.m')
-rw-r--r--example/mac/macExample/macExample/MCTMsgViewController.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/example/mac/macExample/macExample/MCTMsgViewController.m b/example/mac/macExample/macExample/MCTMsgViewController.m
index f26b783f..67cc3892 100644
--- a/example/mac/macExample/macExample/MCTMsgViewController.m
+++ b/example/mac/macExample/macExample/MCTMsgViewController.m
@@ -49,7 +49,7 @@
}
else {
[_messageView setMessage:NULL];
- MCOIMAPFetchContentOperation * op = [_session fetchMessageByUIDOperationWithFolder:_folder uid:[_message uid]];
+ MCOIMAPFetchContentOperation * op = [_session fetchMessageOperationWithFolder:_folder uid:[_message uid]];
[_ops addObject:op];
[op start:^(NSError * error, NSData * data) {
if ([error code] != MCOErrorNone) {
@@ -84,7 +84,7 @@
[_pending addObject:partUniqueID];
- MCOIMAPFetchContentOperation * op = [_session fetchMessageAttachmentByUIDOperationWithFolder:folder uid:[_message uid] partID:[part partID] encoding:[part encoding]];
+ MCOIMAPFetchContentOperation * op = [_session fetchMessageAttachmentOperationWithFolder:folder uid:[_message uid] partID:[part partID] encoding:[part encoding]];
[_ops addObject:op];
[op start:^(NSError * error, NSData * data) {
if ([error code] != MCOErrorNone) {