nice side effect, it also fixes the Amarok bug that caused .oga files not to be picked up by the collection scanner.
BUG:178602
git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@983337
283d02a7-25f6-0310-bc7c-
ecb5cbfe19da
int pos = s.rfind(".");
if(pos != -1) {
String ext = s.substr(pos + 1).upper();
- if(ext == "OGG")
+ if(ext == "OGG" || ext == "OGA")
return new Ogg::Vorbis::File(fileName, readAudioProperties, audioPropertiesStyle);
if(ext == "MP3")
return new MPEG::File(fileName, readAudioProperties, audioPropertiesStyle);