Ensure IrcBot correctly disconnects when ccnet shuts down the AppDomain.

This commit is contained in:
Daniel Grunwald 2010-09-04 19:49:25 +02:00
Родитель 4dd505df71
Коммит a626f74dd8
1 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -73,8 +73,11 @@ namespace ccnet.IrcPublisher.plugin
void ListenThread()
{
try {
client.Listen();
client.Disconnect();
try {
client.Listen();
} finally {
client.Disconnect();
}
} catch (ThreadAbortException) {
throw;
} catch (Exception ex) {