mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 03:45:35 +08:00
fixes a CTB when IRCBridgeModule is not configured.
This commit is contained in:
@@ -85,7 +85,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Chat
|
|||||||
m_log.Info("[IRC] module not configured");
|
m_log.Info("[IRC] module not configured");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
lock (m_syncInit)
|
lock (m_syncInit)
|
||||||
{
|
{
|
||||||
|
|
||||||
@@ -125,7 +125,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Chat
|
|||||||
|
|
||||||
public void PostInitialise()
|
public void PostInitialise()
|
||||||
{
|
{
|
||||||
if (!m_irc.Enabled) return;
|
if (null == m_irc || !m_irc.Enabled) return;
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user