fix: hide token in CI/CD log (#70)
fix https://github.com/appleboy/drone-telegram/issues/65
This commit is contained in:
parent
71a0551697
commit
b339fb0238
@ -375,7 +375,11 @@ func (p Plugin) Send(bot *tgbotapi.BotAPI, msg tgbotapi.Chattable) error {
|
||||
log.Println("=====================")
|
||||
}
|
||||
|
||||
return err
|
||||
if err == nil {
|
||||
return nil
|
||||
}
|
||||
|
||||
return errors.New(strings.Replace(err.Error(), p.Config.Token, "<token>", -1))
|
||||
}
|
||||
|
||||
// Message is plugin default message.
|
||||
|
Loading…
Reference in New Issue
Block a user