Release 3.22.0

This commit is contained in:
Thomas 2023-05-30 09:44:40 +02:00
parent 37838681da
commit 719665a2d8
3 changed files with 11 additions and 1 deletions

View File

@ -1,4 +1,9 @@
[
{
"version": "3.22.0",
"code": "490",
"note": "Fixed:\n- Too many requests\n- Blank Home page\n- Crashes when visiting profiles\n- Some audio files cannot be uploaded"
},
{
"version": "3.21.2",
"code": "489",

View File

@ -431,7 +431,7 @@ public class ComposeAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder
if (instanceInfo != null && instanceInfo.getMimeTypeAudio() != null && instanceInfo.getMimeTypeAudio().size() > 0) {
mimetypes = instanceInfo.getMimeTypeAudio().toArray(new String[0]);
} else {
mimetypes = new String[]{"audio/mpeg", "audio/opus", "audio/flac", "audio/wav", "audio/ogg"};
mimetypes = new String[]{"audio/*"};
}
} else if (type == ComposeActivity.mediaType.ALL) {
if (instanceInfo != null && instanceInfo.getMimeTypeOther() != null && instanceInfo.getMimeTypeOther().size() > 0) {

View File

@ -0,0 +1,5 @@
Fixed:
- Too many requests
- Blank Home page
- Crashes when visiting profiles
- Some audio files cannot be uploaded