Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Danmei Chen
44a4928d9a fix auto download file 2019-08-07 10:16:17 +02:00

View file

@ -1417,13 +1417,15 @@ void on_chat_room_conference_alert(LinphoneChatRoom *cr, const LinphoneEventLog
} else {
NSString *key = @"localfile";
//write file to path
if([view writeFileInICloud:data fileURL:[view getICloudFileUrl:name]]) {
if([self writeFileInICloud:data fileURL:[self getICloudFileUrl:name]]) {
dispatch_async(dispatch_get_main_queue(), ^{
[LinphoneManager setValueInMessageAppData:name forKey:key inMessage:message];
//[LinphoneManager setValueInMessageAppData:filePath forKey:@"cachedfile" inMessage:message];
[NSNotificationCenter.defaultCenter postNotificationName:kLinphoneMessageReceived object:view];
[view.tableController scrollToLastUnread:TRUE];
});}
});} else {
LOGE(@"[Auto download error] can not save the file %@", name);
}
}
}
}