Fix bubble chat delete

This commit is contained in:
Margaux Clerc 2015-08-14 09:44:04 +02:00
parent c054e6bcf8
commit 2f57f9a6c9
2 changed files with 2 additions and 1 deletions

View file

@ -600,7 +600,6 @@ public class ChatFragment extends Fragment implements OnClickListener, LinphoneC
}
// Rotate the bitmap if possible/needed, using EXIF data
Log.w(path);
try {
if (path != null) {
ExifInterface exif = new ExifInterface(path);

View file

@ -122,6 +122,8 @@ public class BubbleChat implements LinphoneChatMessage.LinphoneChatMessageListen
view.setBackgroundResource(R.drawable.chat_bubble_incoming);
}
view.setId(message.getStorageId());
spinner = (ProgressBar) view.findViewById(R.id.spinner);
String externalBodyUrl = message.getExternalBodyUrl();