Bug 105431 - Konversation never reconnects when the connection is lost
Summary: Konversation never reconnects when the connection is lost
Status: RESOLVED FIXED
Alias: None
Product: konversation
Classification: Applications
Component: general (show other bugs)
Version: unspecified
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: Konversation Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-05-11 00:12 UTC by Allan Sandfeld
Modified: 2005-05-14 13:14 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Allan Sandfeld 2005-05-11 00:12:33 UTC
Version:            (using KDE Devel)
Installed from:    Compiled sources

Even though it is configured to do so after a certain timeout konversation never reconnects.
Comment 1 Ismail Donmez 2005-05-14 13:14:08 UTC
SVN commit 413693 by cartman:

Wait 2 minutes if our reconnections attempts fail and retry then
BUG:105431


 M  +3 -0      trunk/extragear/network/konversation/src/server.cpp  


--- trunk/extragear/network/konversation/src/server.cpp #413692:413693
@@ -625,6 +625,9 @@
                 
                 connectToIRCServer();
             } else {
+                error = i18n("Waiting for 2 minutes before another reconnection attempt...");
+                statusView->appendServerMessage(i18n("Info"),error);
+                QTimer::singleShot(2*60*1000,this,SLOT(connectToIRCServer()));
             }
         }
         else {