diff -r 454caa755f53 -r b03ca9889e90 pidgin/pidginaccounteditor.c --- a/pidgin/pidginaccounteditor.c Tue Dec 13 01:59:36 2022 -0600 +++ b/pidgin/pidginaccounteditor.c Tue Dec 13 02:44:43 2022 -0600 @@ -228,7 +228,9 @@ /* Determine our values. */ if(editor->account != NULL) { - svalue = purple_account_get_private_alias(editor->account); + PurpleContactInfo *info = PURPLE_CONTACT_INFO(editor->account); + + svalue = purple_contact_info_get_alias(info); image = purple_buddy_icons_find_account_icon(editor->account); use_global = purple_account_get_bool(editor->account, "use-global-buddyicon", TRUE); @@ -781,6 +783,7 @@ static void pidgin_account_editor_save_user_options(PidginAccountEditor *editor) { + PurpleContactInfo *info = PURPLE_CONTACT_INFO(editor->account); const gchar *svalue = NULL; gboolean bvalue = FALSE; @@ -791,7 +794,7 @@ if(*svalue == '\0') { svalue = NULL; } - purple_account_set_private_alias(editor->account, svalue); + purple_contact_info_set_alias(info, svalue); /* Set whether or not to use the global avatar. */ bvalue = gtk_switch_get_active(GTK_SWITCH(editor->use_custom_avatar));