Commit b9af6ee6 authored by Thomas's avatar Thomas
Browse files

Fix edit media description

parent 5d5f2f9c
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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
+1 −0
Original line number Diff line number Diff line
@@ -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
 No newline at end of file