Skip to content

Commit

Permalink
fix(ProfileEdit): alt text form data value (#1225)
Browse files Browse the repository at this point in the history
  • Loading branch information
GeopJr authored Nov 28, 2024
1 parent 111a914 commit 44fa80f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Dialogs/ProfileEdit.vala
Original file line number Diff line number Diff line change
Expand Up @@ -273,10 +273,10 @@ public class Tuba.Dialogs.ProfileEdit : Adw.Dialog {

if (alt_text_group.visible) {
if (profile.avatar_description != avi_alt_text_row.text)
req.with_form_data ("avatar_description", name_row.text);
req.with_form_data ("avatar_description", avi_alt_text_row.text);

if (profile.header_description != header_alt_text_row.text)
req.with_form_data ("header_description", name_row.text);
req.with_form_data ("header_description", header_alt_text_row.text);
}


Expand Down

0 comments on commit 44fa80f

Please sign in to comment.