1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-12-25 09:08:49 -05:00

Intent.ACTION_SENDTO.equals(action) was tested twice in the same if/else if statement causing the last one to never match, removed the first one in order to properly enable intent-based activity population

Fixes issue 2110
"Intent.ACTION_SENDTO.equals(action)" removed from first condition
See r1712
This commit is contained in:
Fiouz 2010-09-12 05:26:13 +00:00
parent bbd664ad3c
commit c8a5de7abd

View File

@ -455,7 +455,7 @@ public class MessageCompose extends K9Activity implements OnClickListener, OnFoc
String action = intent.getAction();
if (Intent.ACTION_VIEW.equals(action) || Intent.ACTION_SENDTO.equals(action))
if (Intent.ACTION_VIEW.equals(action))
{
/*
* Someone has clicked a mailto: link. The address is in the URI.