diff options
Diffstat (limited to 'internal/timeline/remove.go')
-rw-r--r-- | internal/timeline/remove.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/timeline/remove.go b/internal/timeline/remove.go index e76913a2f..693c9f9b9 100644 --- a/internal/timeline/remove.go +++ b/internal/timeline/remove.go @@ -28,7 +28,7 @@ import ( func (t *timeline) Remove(ctx context.Context, statusID string) (int, error) { l := log.WithContext(ctx). WithFields(kv.Fields{ - {"accountTimeline", t.accountID}, + {"accountTimeline", t.timelineID}, {"statusID", statusID}, }...) @@ -64,7 +64,7 @@ func (t *timeline) RemoveAllByOrBoosting(ctx context.Context, accountID string) l := log. WithContext(ctx). WithFields(kv.Fields{ - {"accountTimeline", t.accountID}, + {"accountTimeline", t.timelineID}, {"accountID", accountID}, }...) |