From 5c6352dd9a642bdb1f5fa2727a41dea9197b4536 Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Sun, 31 Dec 2017 18:38:21 +0000 Subject: Increase the config default for to 50. --- docs/conf/modules.conf.example | 2 +- src/modules/m_chanhistory.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf/modules.conf.example b/docs/conf/modules.conf.example index 95b742eb1..eb6bfd475 100644 --- a/docs/conf/modules.conf.example +++ b/docs/conf/modules.conf.example @@ -397,7 +397,7 @@ # If notice is set to yes, joining users will get a NOTICE before playback # telling them about the following lines being the pre-join history. # If bots is set to yes, it will also send to users marked with +B -# +# #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# # Channel logging module: Used to send snotice output to channels, to diff --git a/src/modules/m_chanhistory.cpp b/src/modules/m_chanhistory.cpp index c51e6337e..d95d8fbfb 100644 --- a/src/modules/m_chanhistory.cpp +++ b/src/modules/m_chanhistory.cpp @@ -116,7 +116,7 @@ class ModuleChanHistory : public Module void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE { ConfigTag* tag = ServerInstance->Config->ConfValue("chanhistory"); - m.maxlines = tag->getInt("maxlines", 50); + m.maxlines = tag->getInt("maxlines", 50, 1); sendnotice = tag->getBool("notice", true); dobots = tag->getBool("bots", true); } -- cgit v1.2.3