[actions/send_matrix] fix typo

This commit is contained in:
2023-11-02 00:51:15 +01:00
parent 54ddafd0fc
commit 7256763c20

View File

@@ -98,11 +98,11 @@ func (s SendMatrix) DryExecute() {
}
func (s SendMatrix) Execute() {
fmt.Println("SendMatrix: Trying to send test message")
fmt.Println("SendMatrix: Trying to send message")
err := s.sendMessage(s.Message)
if err != nil {
fmt.Println("SendMatrix: failed to send test message")
fmt.Println("SendMatrix: failed to send message")
}
s.ActionChan <- err