mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 12:44:42 +00:00
Winmail.dat assistance
This commit is contained in:
parent
14cd6f2c45
commit
b7cc8081a3
1 changed files with 7 additions and 3 deletions
|
@ -436,9 +436,13 @@ public class Helper {
|
|||
|
||||
// Check if viewer available
|
||||
if (ris.size() == 0) {
|
||||
String message = context.getString(R.string.title_no_viewer,
|
||||
type != null ? type : name != null ? name : file.getName());
|
||||
ToastEx.makeText(context, message, Toast.LENGTH_LONG).show();
|
||||
if ("application/ms-tnef".equals(type))
|
||||
viewFAQ(context, 155);
|
||||
else {
|
||||
String message = context.getString(R.string.title_no_viewer,
|
||||
type != null ? type : name != null ? name : file.getName());
|
||||
ToastEx.makeText(context, message, Toast.LENGTH_LONG).show();
|
||||
}
|
||||
} else
|
||||
context.startActivity(intent);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue