Also recognize .oga as an audio extension (#173711)

From #173680
This commit is contained in:
Matt Bierner 2023-02-08 10:24:47 -08:00 committed by GitHub
parent d30d44aea2
commit 39187de5d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -21,9 +21,9 @@ This extension provides basic preview for images, audio and video files.
- `.mp3`
- `.wav`
- `.ogg`
- `.ogg`, `.oga`
### Supported video formats
- `.mp4` (does not support `aac` audio track)
- `.mp4` (does not support `aac` audio tracks)
- `.webm` (vp8 only)

View file

@ -44,7 +44,7 @@
"priority": "builtin",
"selector": [
{
"filenamePattern": "*.{mp3,wav,ogg}"
"filenamePattern": "*.{mp3,wav,ogg,oga}"
}
]
},