Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/BUG-3879-Add_bdmv_detected_as_Vi…
Browse files Browse the repository at this point in the history
…deo_1.3.0Alpha' into 1.3.0Alpha_final
  • Loading branch information
oxan committed Jun 25, 2012
2 parents fb12511 + 6122e6c commit 159248e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions mediaportal/Core/Util/Util.cs
Expand Up @@ -426,6 +426,11 @@ public static bool IsVideo(string strPath)
// Forced check to avoid users messed configuration ( .ts remove from Videos extensions list)
return true;
}
if (extensionFile == ".bdmv")
{
// Forced check to avoid users messed configuration ( .bdmv remove from Videos extensions list)
return true;
}
if (VirtualDirectory.IsImageFile(extensionFile.ToLower()))
return true;
return m_VideoExtensions.Contains(extensionFile);
Expand Down

0 comments on commit 159248e

Please sign in to comment.