Added m4v mime type

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti 2012-08-11 18:05:04 -04:00
parent 82799df9be
commit e0089349e1
1 changed files with 4 additions and 0 deletions

View File

@ -49,6 +49,10 @@ namespace MediaBrowser.Common.Net
{
return "video/avi";
}
else if (ext.EndsWith("m4v", StringComparison.OrdinalIgnoreCase))
{
return "video/x-m4v";
}
// Type text
else if (ext.EndsWith("css", StringComparison.OrdinalIgnoreCase))