1
1
mirror of https://github.com/go-gitea/gitea.git synced 2024-11-18 01:54:40 +01:00

slack JSON indent

This commit is contained in:
Unknwon 2015-08-28 23:38:09 +08:00
parent f509c59ac1
commit 8e92d4352f

@ -42,7 +42,7 @@ type SlackAttachment struct {
func (p *SlackPayload) SetSecret(_ string) {}
func (p *SlackPayload) JSONPayload() ([]byte, error) {
data, err := json.Marshal(p)
data, err := json.MarshalIndent(p, "", " ")
if err != nil {
return []byte{}, err
}