# HG changeset patch # User Elliott Sales de Andrade # Date 1281210690 0 # Node ID 624f3d8bff5d54cc4225766526e8be896f2d29d5 # Parent 8bc7b54f24b845fef3b560b4e6f86d9a432e9ab0 Fall back to SB when a DC is declined via transrespbody also. Fixes #12150. diff -r 8bc7b54f24b8 -r 624f3d8bff5d ChangeLog --- a/ChangeLog Sat Aug 07 18:43:31 2010 +0000 +++ b/ChangeLog Sat Aug 07 19:51:30 2010 +0000 @@ -25,6 +25,8 @@ MSN: * Support for web-based buddy icons, used when a buddy logs in to the messenger on the Live website. + * Fix file transfers with some clients that don't support direct + connections (e.g., papyon, telepathy-butterfly, etc.) (#12150) MXit: * Fix filename for the Shocked emoticon. (#12364) diff -r 8bc7b54f24b8 -r 624f3d8bff5d libpurple/protocols/msn/slp.c --- a/libpurple/protocols/msn/slp.c Sat Aug 07 18:43:31 2010 +0000 +++ b/libpurple/protocols/msn/slp.c Sat Aug 07 19:51:30 2010 +0000 @@ -941,7 +941,8 @@ purple_debug_error("msn", "Received non-OK result: %s\n", error ? error : "Unknown"); - if (type && !strcmp(type, "application/x-msnmsgr-transreqbody")) { + if (type && (!strcmp(type, "application/x-msnmsgr-transreqbody") + || !strcmp(type, "application/x-msnmsgr-transrespbody"))) { MsnDirectConn *dc = slpcall->slplink->dc; if (dc) { msn_dc_fallback_to_sb(dc);