mirror of
https://github.com/moparisthebest/k-9
synced 2025-02-17 07:30:16 -05:00
Discourage accidental deletion of essential mime types.
This commit is contained in:
parent
32b5afc702
commit
fdb38da2e5
@ -27,7 +27,10 @@ public class MimeUtility {
|
|||||||
* http://www.stdicon.com/mimetypes
|
* http://www.stdicon.com/mimetypes
|
||||||
*/
|
*/
|
||||||
public static final String[][] MIME_TYPE_BY_EXTENSION_MAP = new String[][] {
|
public static final String[][] MIME_TYPE_BY_EXTENSION_MAP = new String[][] {
|
||||||
{ "", "application/octet-stream" },
|
//* Do not delete the next two lines
|
||||||
|
{ "", DEFAULT_ATTACHMENT_MIME_TYPE },
|
||||||
|
{ "k9s", K9_SETTINGS_MIME_TYPE},
|
||||||
|
//* Do not delete the previous two lines
|
||||||
{ "123", "application/vnd.lotus-1-2-3"},
|
{ "123", "application/vnd.lotus-1-2-3"},
|
||||||
{ "323", "text/h323"},
|
{ "323", "text/h323"},
|
||||||
{ "3dml", "text/vnd.in3d.3dml"},
|
{ "3dml", "text/vnd.in3d.3dml"},
|
||||||
@ -341,7 +344,6 @@ public class MimeUtility {
|
|||||||
{ "jpm", "video/jpm"},
|
{ "jpm", "video/jpm"},
|
||||||
{ "js", "application/x-javascript"},
|
{ "js", "application/x-javascript"},
|
||||||
{ "json", "application/json"},
|
{ "json", "application/json"},
|
||||||
{ "k9s", K9_SETTINGS_MIME_TYPE},
|
|
||||||
{ "kar", "audio/midi"},
|
{ "kar", "audio/midi"},
|
||||||
{ "karbon", "application/vnd.kde.karbon"},
|
{ "karbon", "application/vnd.kde.karbon"},
|
||||||
{ "kfo", "application/vnd.kde.kformula"},
|
{ "kfo", "application/vnd.kde.kformula"},
|
||||||
|
Loading…
Reference in New Issue
Block a user