diff --git a/cmd/gosky/bsky.go b/cmd/gosky/bsky.go index afc7cb9d..95f4a7a6 100644 --- a/cmd/gosky/bsky.go +++ b/cmd/gosky/bsky.go @@ -335,7 +335,7 @@ var bskyNotificationsCmd = &cli.Command{ return err } - notifs, err := appbsky.NotificationListNotifications(ctx, xrpcc, "", 50, false, "") + notifs, err := appbsky.NotificationListNotifications(ctx, xrpcc, "", 50, false, nil, "") if err != nil { return err } diff --git a/fakedata/generators.go b/fakedata/generators.go index e07d875b..fa684608 100644 --- a/fakedata/generators.go +++ b/fakedata/generators.go @@ -390,7 +390,7 @@ func GenLikesRepostsReplies(xrpcc *xrpc.Client, acc *AccountContext, fracLike, f func BrowseAccount(xrpcc *xrpc.Client, acc *AccountContext) error { // fetch notifications maxNotif := 50 - resp, err := appbsky.NotificationListNotifications(context.TODO(), xrpcc, "", int64(maxNotif), false, "") + resp, err := appbsky.NotificationListNotifications(context.TODO(), xrpcc, "", int64(maxNotif), false, nil, "") if err != nil { return err } diff --git a/testing/utils.go b/testing/utils.go index d2847d02..cd957146 100644 --- a/testing/utils.go +++ b/testing/utils.go @@ -471,7 +471,7 @@ func (u *TestUser) GetNotifs(t *testing.T) []*bsky.NotificationListNotifications t.Helper() ctx := context.TODO() - resp, err := bsky.NotificationListNotifications(ctx, u.client, "", 100, false, "") + resp, err := bsky.NotificationListNotifications(ctx, u.client, "", 100, false, nil, "") if err != nil { t.Fatal(err) }