comparison libpurple/protocols/oscar/oscar.c @ 16295:bb8b24032089

Remove the OSCAR rate limiting dialog, as the only time I've ever seen it it anytime recently is when I'm logged in from an insane number of places and Pidgin wants to poll for status messages and buddy icons. We can silently ignore this situation. Mark agreed!
author Sean Egan <seanegan@gmail.com>
date Sun, 22 Apr 2007 03:08:13 +0000
parents 96a8e57cf0ca
children 1560f28cb854
comparison
equal deleted inserted replaced
16294:a910080ccf8b 16295:bb8b24032089
3395 limit, disconnect, 3395 limit, disconnect,
3396 windowsize); 3396 windowsize);
3397 3397
3398 if (code == AIM_RATE_CODE_LIMIT) 3398 if (code == AIM_RATE_CODE_LIMIT)
3399 { 3399 {
3400 purple_notify_error(od->gc, NULL, _("Rate limiting error."), 3400 purple_debug_warning("oscar", _("The last action you attempted could not be "
3401 _("The last action you attempted could not be " 3401 "performed because you are over the rate limit. "
3402 "performed because you are over the rate limit. " 3402 "Please wait 10 seconds and try again."));
3403 "Please wait 10 seconds and try again."));
3404 } 3403 }
3405 3404
3406 return 1; 3405 return 1;
3407 } 3406 }
3408 3407