Commit 60c2bfbe authored by Eric's avatar Eric

[Bugfix] fix filtering commands bugs

parent 50e75f2d
...@@ -131,6 +131,9 @@ func (p *Parser) parseInputState(b []byte) []byte { ...@@ -131,6 +131,9 @@ func (p *Parser) parseInputState(b []byte) []byte {
fbdMsg := utils.WrapperWarn(fmt.Sprintf(i18n.T("Command `%s` is forbidden"), cmd)) fbdMsg := utils.WrapperWarn(fmt.Sprintf(i18n.T("Command `%s` is forbidden"), cmd))
p.cmdOutputParser.WriteData([]byte(fbdMsg)) p.cmdOutputParser.WriteData([]byte(fbdMsg))
p.srvOutputChan <- []byte("\r\n" + fbdMsg) p.srvOutputChan <- []byte("\r\n" + fbdMsg)
p.cmdRecordChan <- [2]string{p.command, fbdMsg}
p.command = ""
p.output = ""
return []byte{utils.CharCleanLine, '\r'} return []byte{utils.CharCleanLine, '\r'}
} }
} else { } else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment