Fix edit media description
This commit is contained in:
parent
5d5f2f9c9a
commit
b9af6ee60b
|
@ -92,9 +92,9 @@ public interface MastodonStatusesService {
|
|||
@Field("spoiler_text") String spoiler_text,
|
||||
@Field("visibility") String visibility,
|
||||
@Field("language") String language,
|
||||
@Field("media_attributes[id][]") List<String> media_id,
|
||||
@Field("media_attributes[description][]") List<String> media_description,
|
||||
@Field("media_attributes[focus][]") List<String> focus
|
||||
@Field("media_attributes[][id]") List<String> media_id,
|
||||
@Field("media_attributes[][description]") List<String> media_description,
|
||||
@Field("media_attributes[][focus]") List<String> focus
|
||||
);
|
||||
|
||||
//Post a scheduled status
|
||||
|
|
|
@ -6,6 +6,7 @@ Changed:
|
|||
|
||||
Fixed:
|
||||
- Media previews remain the same when sharing
|
||||
- Edit media description not working
|
||||
- Accessibility (larger fonts): profiles/DM/
|
||||
- Cross replies: Wrong visibility with the selected account
|
||||
- Several crashes
|
Loading…
Reference in New Issue