Browse Source

Added 3g2 mime type

LukePulverenti Luke Pulverenti luke pulverenti 13 years ago
parent
commit
e2fe4174da
1 changed files with 4 additions and 0 deletions
  1. 4 0
      MediaBrowser.Common/Net/MimeTypes.cs

+ 4 - 0
MediaBrowser.Common/Net/MimeTypes.cs

@@ -61,6 +61,10 @@ namespace MediaBrowser.Common.Net
             {
                 return "video/3gpp";
             }
+            else if (ext.EndsWith("3g2", StringComparison.OrdinalIgnoreCase))
+            {
+                return "video/3gpp2";
+            }
             else if (ext.EndsWith("ts", StringComparison.OrdinalIgnoreCase))
             {
                 return "video/mp2t";