| Summary: | ICQ is unable to connect automaticaly if the network is not available during the startup | ||
|---|---|---|---|
| Product: | [Unmaintained] kopete | Reporter: | Martin Mrazik <mmrazik> |
| Component: | ICQ and AIM Plugins | Assignee: | Kopete Developers <kopete-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | openSUSE | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Martin Mrazik
2006-05-04 21:40:57 UTC
SVN commit 567996 by rjarosz:
Backport fix for bug when ICQ or AIM status icon stays turning forever if connection is closed on login
BUG: 126754
M +4 -1 client.cpp
--- branches/KDE/3.5/kdenetwork/kopete/protocols/oscar/liboscar/client.cpp #567995:567996
@@ -1049,8 +1049,11 @@
if ( !c )
return;
- if ( c->isSupported( 0x0002 ) )
+ if ( c->isSupported( 0x0002 ) ||
+ d->stage == ClientPrivate::StageOne ) //emit on login
+ {
emit socketError( code, string );
+ }
//connection is deleted. deleteLater() is used
d->connections.remove( c );
|