# HG changeset patch # User Mark Doliner # Date 1043186830 0 # Node ID fe465b7d9440f4c01a017c3a4e6806a8bba91357 # Parent c0bb8c7604168c529f7098c0a7d07be33ceba32d [gaim-migrate @ 4646] This fixes the receiving of some messages from AOL8. Namely, the first message they send to you, and any message they send you directly after receiving a message from you (I think). The problem is that AOL8 advertises an icon with a timestamp of 0, for some crazy reason. Thanks to some really really kick ass dude on AIM for helping me test this. committer: Tailor Script diff -r c0bb8c760416 -r fe465b7d9440 src/protocols/oscar/oscar.c --- a/src/protocols/oscar/oscar.c Tue Jan 21 17:47:18 2003 +0000 +++ b/src/protocols/oscar/oscar.c Tue Jan 21 22:07:10 2003 +0000 @@ -1795,13 +1795,10 @@ if (args->icbmflags & AIM_IMFLAGS_AWAY) flags |= IM_FLAG_AWAY; - if (args->icbmflags & AIM_IMFLAGS_HASICON) { + if ((args->icbmflags & AIM_IMFLAGS_HASICON) && (args->iconlen) && (args->iconsum) && (args->iconstamp)) { struct icon_req *ir = NULL; GSList *h = od->hasicons; - if (!args->iconlen || !args->iconsum || !args->iconstamp) - return 1; - debug_printf("%s has an icon\n", userinfo->sn); while (h) { ir = h->data;