mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2025-01-07 00:20:08 +02:00
Release 3.22.0
This commit is contained in:
parent
37838681da
commit
719665a2d8
3 changed files with 11 additions and 1 deletions
|
@ -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",
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
Fixed:
|
||||
- Too many requests
|
||||
- Blank Home page
|
||||
- Crashes when visiting profiles
|
||||
- Some audio files cannot be uploaded
|
Loading…
Reference in a new issue