diff options
Diffstat (limited to 'internal/db')
-rw-r--r-- | internal/db/bundb/timeline.go | 2 | ||||
-rw-r--r-- | internal/db/bundb/timeline_test.go | 8 | ||||
-rw-r--r-- | internal/db/timeline.go | 2 |
3 files changed, 4 insertions, 8 deletions
diff --git a/internal/db/bundb/timeline.go b/internal/db/bundb/timeline.go index 35b754d73..d15c07e9c 100644 --- a/internal/db/bundb/timeline.go +++ b/internal/db/bundb/timeline.go @@ -124,7 +124,7 @@ func (t *timelineDB) GetHomeTimeline(ctx context.Context, accountID string, maxI return statuses, nil } -func (t *timelineDB) GetPublicTimeline(ctx context.Context, accountID string, maxID string, sinceID string, minID string, limit int, local bool) ([]*gtsmodel.Status, db.Error) { +func (t *timelineDB) GetPublicTimeline(ctx context.Context, maxID string, sinceID string, minID string, limit int, local bool) ([]*gtsmodel.Status, db.Error) { // Ensure reasonable if limit < 0 { limit = 0 diff --git a/internal/db/bundb/timeline_test.go b/internal/db/bundb/timeline_test.go index 8822879dd..9b6365621 100644 --- a/internal/db/bundb/timeline_test.go +++ b/internal/db/bundb/timeline_test.go @@ -35,23 +35,19 @@ type TimelineTestSuite struct { } func (suite *TimelineTestSuite) TestGetPublicTimeline() { - viewingAccount := suite.testAccounts["local_account_1"] - - s, err := suite.db.GetPublicTimeline(context.Background(), viewingAccount.ID, "", "", "", 20, false) + s, err := suite.db.GetPublicTimeline(context.Background(), "", "", "", 20, false) suite.NoError(err) suite.Len(s, 6) } func (suite *TimelineTestSuite) TestGetPublicTimelineWithFutureStatus() { - viewingAccount := suite.testAccounts["local_account_1"] - futureStatus := getFutureStatus() if err := suite.db.Put(context.Background(), futureStatus); err != nil { suite.FailNow(err.Error()) } - s, err := suite.db.GetPublicTimeline(context.Background(), viewingAccount.ID, "", "", "", 20, false) + s, err := suite.db.GetPublicTimeline(context.Background(), "", "", "", 20, false) suite.NoError(err) suite.Len(s, 6) 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. |