mirror of https://github.com/M66B/FairEmail.git
Is TNEF
This commit is contained in:
parent
b4ad4d72d3
commit
57e74ff227
|
@ -517,7 +517,7 @@ public class Helper {
|
||||||
|
|
||||||
// Check if viewer available
|
// Check if viewer available
|
||||||
if (ris == null || ris.size() == 0) {
|
if (ris == null || ris.size() == 0) {
|
||||||
if ("application/ms-tnef".equals(type))
|
if (isTnef(type))
|
||||||
viewFAQ(context, 155);
|
viewFAQ(context, 155);
|
||||||
else {
|
else {
|
||||||
String message = context.getString(R.string.title_no_viewer,
|
String message = context.getString(R.string.title_no_viewer,
|
||||||
|
@ -530,7 +530,7 @@ public class Helper {
|
||||||
try {
|
try {
|
||||||
context.startActivity(intent);
|
context.startActivity(intent);
|
||||||
} catch (ActivityNotFoundException ex) {
|
} catch (ActivityNotFoundException ex) {
|
||||||
if ("application/ms-tnef".equals(type))
|
if (isTnef(type))
|
||||||
viewFAQ(context, 155);
|
viewFAQ(context, 155);
|
||||||
else {
|
else {
|
||||||
String message = context.getString(R.string.title_no_viewer,
|
String message = context.getString(R.string.title_no_viewer,
|
||||||
|
@ -541,6 +541,12 @@ public class Helper {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static boolean isTnef(String type) {
|
||||||
|
// https://en.wikipedia.org/wiki/Transport_Neutral_Encapsulation_Format
|
||||||
|
return ("application/ms-tnef".equals(type) ||
|
||||||
|
"application/vnd.ms-tnef".equals(type));
|
||||||
|
}
|
||||||
|
|
||||||
static void view(Context context, Intent intent) {
|
static void view(Context context, Intent intent) {
|
||||||
Uri uri = intent.getData();
|
Uri uri = intent.getData();
|
||||||
if ("http".equals(uri.getScheme()) || "https".equals(uri.getScheme()))
|
if ("http".equals(uri.getScheme()) || "https".equals(uri.getScheme()))
|
||||||
|
|
Loading…
Reference in New Issue