Support WMA in Ubuntu One.

This commit is contained in:
John Maguire 2012-12-07 12:09:17 +01:00
parent 62e3e4cb91
commit 7d4f5764dc
1 changed files with 2 additions and 0 deletions

View File

@ -139,6 +139,8 @@ QString GuessMimeTypeForFile(const QString& filename) {
return "application/ogg";
} else if (filename.endsWith(".flac")) {
return "application/x-flac";
} else if (filename.endsWith(".wma")) {
return "audio/x-ms-wma";
}
return QString::null;
}