| Summary: | Konversation never reconnects when the connection is lost | ||
|---|---|---|---|
| Product: | [Applications] konversation | Reporter: | Allan Sandfeld <kde> |
| Component: | general | Assignee: | Konversation Bugs <konversation-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Allan Sandfeld
2005-05-11 00:12:33 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 {
|