mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-04 06:20:26 +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
|
// Check if viewer available
|
||||||
if (ris.size() == 0) {
|
if (ris.size() == 0) {
|
||||||
String message = context.getString(R.string.title_no_viewer,
|
if ("application/ms-tnef".equals(type))
|
||||||
type != null ? type : name != null ? name : file.getName());
|
viewFAQ(context, 155);
|
||||||
ToastEx.makeText(context, message, Toast.LENGTH_LONG).show();
|
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
|
} else
|
||||||
context.startActivity(intent);
|
context.startActivity(intent);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue