Prevent opening inline images

This commit is contained in:
M66B 2019-03-27 06:52:36 +00:00
parent 97db894051
commit 969a0228ff
2 changed files with 11 additions and 0 deletions

8
FAQ.md
View File

@ -146,6 +146,7 @@ FairEmail follows all the best practices for an email client as decribed in [thi
* [(82) What is a tracking image?](#user-content-faq82)
* [(83) What does 'User is authenticated but not connected' mean?](#user-content-faq83)
* [(84) What are local contacts for?](#user-content-faq84)
* [(85) How are identities selected?](#user-content-faq85)
[I have another question.](#support)
@ -1383,6 +1384,13 @@ The list of contacts is sorted on number of times contacted and the last time co
<br />
<a name="faq84"></a>
**(84) How are identities selected?**
<br />
## Support
If you have another question, want to request a feature or report a bug, you can use [this forum](https://forum.xda-developers.com/android/apps-games/source-email-t3824168).

View File

@ -1757,6 +1757,9 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
new Intent(ActivityView.ACTION_ACTIVATE_PRO)
.putExtra("uri", uri));
} else {
if ("cid".equals(uri.getScheme()))
return;
final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
View view = LayoutInflater.from(context).inflate(R.layout.dialog_link, null);