mirror of
https://github.com/anope/anope.git
synced 2026-06-12 19:14:47 +02:00
Fixed reintroducing our clients if we disconnect and reconnect to the uplink
This commit is contained in:
+1
-1
@@ -1403,7 +1403,7 @@ log
|
||||
* chanserv/saset/peace chanserv/saset/persist chanserv/saset/private
|
||||
* chanserv/saset/secure chanserv/saset/securefounder chanserv/saset/secureops
|
||||
* chanserv/saset/signkick chanserv/saset/successor chanserv/saset/topiclock
|
||||
* chanserv/saset/url chanserv/saset/xop chanserv/saset/noexpire
|
||||
* chanserv/saset/url chanserv/saset/noexpire
|
||||
*
|
||||
* memoserv/sendall memoserv/staff
|
||||
*
|
||||
|
||||
@@ -420,7 +420,7 @@ class BahamutIRCdMessage : public IRCdMessage
|
||||
ChannelMode *cm = ModeManager::FindChannelModeByChar(ch);
|
||||
if (!cm)
|
||||
{
|
||||
Log() << "Receeved unknown mode prefix " << cm << " in SJOIN string";
|
||||
Log() << "Received unknown mode prefix " << cm << " in SJOIN string";
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
@@ -389,7 +389,7 @@ class InspircdIRCdMessage : public IRCdMessage
|
||||
ChannelMode *cm = ModeManager::FindChannelModeByChar(buf[0]);
|
||||
if (!cm)
|
||||
{
|
||||
Log() << "Receeved unknown mode prefix " << buf[0] << " in FJOIN string";
|
||||
Log() << "Received unknown mode prefix " << buf[0] << " in FJOIN string";
|
||||
buf.erase(buf.begin());
|
||||
continue;
|
||||
}
|
||||
|
||||
@@ -129,10 +129,6 @@ class UplinkSocket : public ConnectionSocket
|
||||
|
||||
/* Don't use quitmsg here, it may contain information you don't want people to see */
|
||||
ircdproto->SendQuit(bi, "Shutting down");
|
||||
/* Erase bots from the user list so they don't get nuked later on */
|
||||
UserListByNick.erase(bi->nick);
|
||||
if (!bi->GetUID().empty())
|
||||
UserListByUID.erase(bi->GetUID());
|
||||
}
|
||||
|
||||
/* Clear all of our users, but not our bots */
|
||||
|
||||
Reference in New Issue
Block a user