diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-01-22 14:06:50 -0800 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-01-22 14:06:50 -0800 |
commit | ec8609fa2186f03f5dde215bc7ed06f47cbe47ba (patch) | |
tree | 237581d06dfca60921d5348a65a07b1c3e851add /lib | |
parent | 12e286b21c6250bb3e4cb5b62e72f49c6714432a (diff) | |
parent | 73522fe189253481984019cdb9f141cbaa41997c (diff) | |
download | nextcloud-server-ec8609fa2186f03f5dde215bc7ed06f47cbe47ba.tar.gz nextcloud-server-ec8609fa2186f03f5dde215bc7ed06f47cbe47ba.zip |
Merge pull request #1259 from TheSFReader/master
Add two specific mimetype extensions (ebooks): for epub and mobi files
Diffstat (limited to 'lib')
-rw-r--r-- | lib/mimetypes.list.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/mimetypes.list.php b/lib/mimetypes.list.php index 77b97917583..fc87d011ecd 100644 --- a/lib/mimetypes.list.php +++ b/lib/mimetypes.list.php @@ -95,4 +95,6 @@ return array( 'cdr' => 'application/coreldraw', 'impress' => 'text/impress', 'ai' => 'application/illustrator', + 'epub' => 'application/epub+zip', + 'mobi' => 'application/x-mobipocket-ebook', ); |