From 16e486ad96be2c81405f22229dcf58600e08e96d Mon Sep 17 00:00:00 2001 From: Tobi Smethurst <31960611+tsmethurst@users.noreply.github.com> Date: Wed, 23 Jun 2021 18:42:20 +0200 Subject: Timeline bugfix (#60) * fix a stack overflow in the timeline * go fmt --- internal/timeline/get.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'internal/timeline/get.go') diff --git a/internal/timeline/get.go b/internal/timeline/get.go index 867e0940b..f07d81d55 100644 --- a/internal/timeline/get.go +++ b/internal/timeline/get.go @@ -13,7 +13,12 @@ func (t *timeline) Get(amount int, maxID string, sinceID string, minID string) ( l := t.log.WithFields(logrus.Fields{ "func": "Get", "accountID": t.accountID, + "amount": amount, + "maxID": maxID, + "sinceID": sinceID, + "minID": minID, }) + l.Debug("entering get") var statuses []*apimodel.Status var err error -- cgit v1.2.3