Merge pull request #41 from btzr-io/patch-4
Add 3D-file support for getMediaType function
This commit is contained in:
commit
0239589369
1 changed files with 1 additions and 0 deletions
|
@ -117,6 +117,7 @@ Lbry.getMediaType = (contentType, fileName) => {
|
||||||
[/^.+\.(mp4|m4v|webm|flv|f4v|ogv)$/i, 'video'],
|
[/^.+\.(mp4|m4v|webm|flv|f4v|ogv)$/i, 'video'],
|
||||||
[/^.+\.(mp3|m4a|aac|wav|flac|ogg|opus)$/i, 'audio'],
|
[/^.+\.(mp3|m4a|aac|wav|flac|ogg|opus)$/i, 'audio'],
|
||||||
[/^.+\.(html|htm|xml|pdf|odf|doc|docx|md|markdown|txt|epub|org)$/i, 'document'],
|
[/^.+\.(html|htm|xml|pdf|odf|doc|docx|md|markdown|txt|epub|org)$/i, 'document'],
|
||||||
|
[/^.+\.(stl|obj|fbx|gcode)$/i, '3D-file'],
|
||||||
];
|
];
|
||||||
const res = formats.reduce((ret, testpair) => {
|
const res = formats.reduce((ret, testpair) => {
|
||||||
switch (testpair[0].test(ret)) {
|
switch (testpair[0].test(ret)) {
|
||||||
|
|
Loading…
Reference in a new issue