summaryrefslogtreecommitdiffstats
path: root/prebuilt/common
diff options
context:
space:
mode:
authorherriojr <jherriott@cyngn.com>2015-10-05 11:52:22 -0700
committerherriojr <jherriott@cyngn.com>2015-10-05 11:52:22 -0700
commit6576661e4a88e9c82cd1e17ee25cba42dbb3b806 (patch)
tree8296b42741ddda1266b1273bcffead6e20d89ae1 /prebuilt/common
parent17adbaa20779e7da1680b89e77a3f265140fd85a (diff)
downloadvendor_replicant-6576661e4a88e9c82cd1e17ee25cba42dbb3b806.zip
vendor_replicant-6576661e4a88e9c82cd1e17ee25cba42dbb3b806.tar.gz
vendor_replicant-6576661e4a88e9c82cd1e17ee25cba42dbb3b806.tar.bz2
Fix MimeType Case
Even though mimetypes are supposed to be case insensitive, Android treats them as case sensitive so it is best practice to do it all in lowercase. Change-Id: I2ce2ac2df4db4989d8be36479f07d4bab97dc7bf
Diffstat (limited to 'prebuilt/common')
-rw-r--r--prebuilt/common/lib/content-types.properties6
1 files changed, 3 insertions, 3 deletions
diff --git a/prebuilt/common/lib/content-types.properties b/prebuilt/common/lib/content-types.properties
index 25cccb4..f4c657c 100644
--- a/prebuilt/common/lib/content-types.properties
+++ b/prebuilt/common/lib/content-types.properties
@@ -1,8 +1,8 @@
# If you want to support more recognized mimetypes in libcore.net.MimeUtils, add them here
docm=application/vnd.ms-word.document.macroenabled.12
-xlsb=application/vnd.ms-excel.sheet.binary.macroEnabled.12
+xlsb=application/vnd.ms-excel.sheet.binary.macroenabled.12
xlsm=application/vnd.ms-excel.sheet.macroEnabled.12
-ppsm=application/vnd.ms-powerpoint.slideshow.macroEnabled.12
+ppsm=application/vnd.ms-powerpoint.slideshow.macroenabled.12
ppsx=application/vnd.openxmlformats-officedocument.presentationml.slideshow
-pptm=application/vnd.ms-powerpoint.presentation.macroEnabled.12 \ No newline at end of file
+pptm=application/vnd.ms-powerpoint.presentation.macroenabled.12 \ No newline at end of file