timelines.go
changeset 162 68df3a01e1a7
parent 160 9f7e683b323f
child 207 301d5b94be3f
--- 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)