Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/EionRobb/skype4pidgin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'skypeweb/libskypeweb.c')
-rw-r--r--skypeweb/libskypeweb.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/skypeweb/libskypeweb.c b/skypeweb/libskypeweb.c
index 3ae43f1..a49b7d1 100644
--- a/skypeweb/libskypeweb.c
+++ b/skypeweb/libskypeweb.c
@@ -120,8 +120,8 @@ skypeweb_tooltip_text(PurpleBuddy *buddy, PurpleNotifyUserInfo *user_info, gbool
g_free(escaped);
}
if (sbuddy->fullname && *sbuddy->fullname) {
- gchar *escaped = g_markup_printf_escaped("%s", sbuddy->display_name);
- purple_notify_user_info_add_pair_html(user_info, "Full Name", sbuddy->fullname);
+ gchar *escaped = g_markup_printf_escaped("%s", sbuddy->fullname);
+ purple_notify_user_info_add_pair_html(user_info, "Full Name", escaped);
g_free(escaped);
}
}
@@ -520,7 +520,7 @@ skypeweb_cmd_topic(PurpleConversation *conv, const gchar *cmd, gchar **args, gch
return PURPLE_CMD_RET_OK;
}
- skypeweb_chat_set_topic(pc, id, args ? args[0] : NULL);
+ skypeweb_chat_set_topic(pc, id, args[0]);
return PURPLE_CMD_RET_OK;
}