diff -r 6786f169b59f -r 68df3a01e1a7 timelines.go --- a/timelines.go Sun Apr 30 22:22:12 2017 +0200 +++ b/timelines.go Sun Apr 30 22:58:12 2017 +0200 @@ -7,8 +7,9 @@ package madon import ( - "fmt" "strings" + + "github.com/pkg/errors" ) // GetTimelines returns a timeline (a list of statuses @@ -28,11 +29,11 @@ case strings.HasPrefix(timeline, ":"), strings.HasPrefix(timeline, "#"): hashtag := timeline[1:] if hashtag == "" { - return nil, fmt.Errorf("timelines API: empty hashtag") + return nil, errors.New("timelines API: empty hashtag") } endPoint = "timelines/tag/" + hashtag default: - return nil, fmt.Errorf("GetTimelines: bad timelines argument") + return nil, errors.New("GetTimelines: bad timelines argument") } params := make(apiCallParams)