plugin - SetState no longer resets additional text

This commit is contained in:
Emmanuel BENOîT 2021-02-19 13:18:21 +01:00
parent fc5f4c1638
commit ac1eacd2a5

View file

@ -51,11 +51,10 @@ func New(name string) *Plugin {
} }
// SetState sets the plugin's output code to `status` and its message to // SetState sets the plugin's output code to `status` and its message to
// the specified `message`. Any extra text is cleared. // the specified `message`.
func (p *Plugin) SetState(status Status, message string) { func (p *Plugin) SetState(status Status, message string) {
p.status = status p.status = status
p.message = message p.message = message
p.extraText = nil
} }
// AddLine adds the specified string to the extra output text buffer. // AddLine adds the specified string to the extra output text buffer.