Bug 105431

Summary: Konversation never reconnects when the connection is lost
Product: [Applications] konversation Reporter: Allan Sandfeld <kde>
Component: generalAssignee: Konversation Developers <konversation-devel>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: Compiled Sources   
OS: Linux   
Latest Commit: Version Fixed In:

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 {