diff options
Diffstat (limited to 'pidgin/plugins')
-rw-r--r-- | pidgin/plugins/relnot.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/pidgin/plugins/relnot.c b/pidgin/plugins/relnot.c index e13110043f..c824001155 100644 --- a/pidgin/plugins/relnot.c +++ b/pidgin/plugins/relnot.c @@ -101,15 +101,16 @@ do_check(void) purple_debug_info("relnot", "Checking for new version."); - msg = soup_form_request_new("GET", "https://pidgin.im/version.php", - "version", purple_core_get_version(), - "build", + msg = soup_message_new_from_encoded_form("GET", "https://pidgin.im/version.php", + soup_form_encode( + "version", purple_core_get_version(), + "build", #ifdef _WIN32 - "purple-win32", + "purple-win32", #else - "purple", + "purple", #endif - NULL); + NULL)); soup_session_queue_message(session, msg, version_fetch_cb, NULL); |