Skip to content

Commit

Permalink
Revert thumbnail null check for non image media
Browse files Browse the repository at this point in the history
  • Loading branch information
McLoo authored and pR0Ps committed Jun 17, 2015
1 parent 3fef94b commit 446fb96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/smssecure/smssecure/ConversationItem.java
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ public void onClick(final View v, final Slide slide) {
intent.putExtra(MediaPreviewActivity.DATE_EXTRA, messageRecord.getDateReceived());

context.startActivity(intent);
} else if (slide.getThumbnailUri() != null) {
} else {
AlertDialogWrapper.Builder builder = new AlertDialogWrapper.Builder(context);
builder.setTitle(R.string.ConversationItem_view_secure_media_question);
builder.setIconAttribute(R.attr.dialog_alert_icon);
Expand Down

0 comments on commit 446fb96

Please sign in to comment.