From 592128bf064443ba0a879079d5ddf833ee63104c Mon Sep 17 00:00:00 2001 From: Yann Diorcet Date: Thu, 10 Jan 2013 15:38:37 +0100 Subject: [PATCH] Fix wrongly showed image in history --- Classes/LinphoneUI/UIHistoryCell.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Classes/LinphoneUI/UIHistoryCell.m b/Classes/LinphoneUI/UIHistoryCell.m index 3146a2308..554df5931 100644 --- a/Classes/LinphoneUI/UIHistoryCell.m +++ b/Classes/LinphoneUI/UIHistoryCell.m @@ -91,6 +91,8 @@ NSString *image = [history.images objectAtIndex:0]; [iconImage setImage:nil]; [iconImage loadImage:[[LinphoneManager instance].configuration getImageUrl:image]]; + } else { + [iconImage setImage:nil]; } }