This commit is contained in:
Unknwon 2015-08-28 23:38:09 +08:00
Родитель f509c59ac1
Коммит 8e92d4352f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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
}