mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 19:18:06 +00:00
Fix incall user infos
This commit is contained in:
parent
e5ede7c400
commit
9451607584
1 changed files with 2 additions and 3 deletions
|
|
@ -144,9 +144,8 @@ enum TableSection {
|
|||
UICallCellData * data = nil;
|
||||
if(call != NULL) {
|
||||
LinphoneCallAppData* appData = (LinphoneCallAppData*) linphone_call_get_user_pointer(call);
|
||||
if(appData != NULL) {
|
||||
data = [[UICallCellData alloc] init:call];
|
||||
[appData->userInfos setObject:data forKey:kLinphoneInCallCellData];
|
||||
if(appData != NULL && [appData->userInfos objectForKey:kLinphoneInCallCellData] == nil) {
|
||||
[appData->userInfos setObject:[[UICallCellData alloc] init:call] forKey:kLinphoneInCallCellData];
|
||||
}
|
||||
}
|
||||
return data;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue