mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-10 22:19:31 +01:00
fix #429
This commit is contained in:
parent
f2eb2b05f2
commit
79c730dd44
@ -1075,6 +1075,11 @@ Get an explanation of <argument>, or "index" for a list of help topics.`), rb)
|
|||||||
// HISTORY me 15
|
// HISTORY me 15
|
||||||
func historyHandler(server *Server, client *Client, msg ircmsg.IrcMessage, rb *ResponseBuffer) bool {
|
func historyHandler(server *Server, client *Client, msg ircmsg.IrcMessage, rb *ResponseBuffer) bool {
|
||||||
config := server.Config()
|
config := server.Config()
|
||||||
|
if !config.History.Enabled {
|
||||||
|
rb.Notice(client.t("This command has been disabled by the server administrators"))
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
target := msg.Params[0]
|
target := msg.Params[0]
|
||||||
var hist *history.Buffer
|
var hist *history.Buffer
|
||||||
channel := server.channels.Get(target)
|
channel := server.channels.Get(target)
|
||||||
|
Loading…
Reference in New Issue
Block a user