diff options
Diffstat (limited to 'internal/db/timeline.go')
-rw-r--r-- | internal/db/timeline.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/db/timeline.go b/internal/db/timeline.go index 58b5b3a21..27f89d997 100644 --- a/internal/db/timeline.go +++ b/internal/db/timeline.go @@ -35,7 +35,7 @@ type Timeline interface { // It will use the given filters and try to return as many statuses as possible up to the limit. // // Statuses should be returned in descending order of when they were created (newest first). - GetPublicTimeline(ctx context.Context, accountID string, maxID string, sinceID string, minID string, limit int, local bool) ([]*gtsmodel.Status, Error) + GetPublicTimeline(ctx context.Context, maxID string, sinceID string, minID string, limit int, local bool) ([]*gtsmodel.Status, Error) // GetFavedTimeline fetches the account's FAVED timeline -- ie., posts and replies that the requesting account has faved. // It will use the given filters and try to return as many statuses as possible up to the limit. |