Skip to content

Commit

Permalink
fixup build after lex updates
Browse files Browse the repository at this point in the history
  • Loading branch information
whyrusleeping committed Jan 16, 2025
1 parent 1d922fc commit dcfb0de
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/gosky/bsky.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
2 changes: 1 addition & 1 deletion fakedata/generators.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
2 changes: 1 addition & 1 deletion testing/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit dcfb0de

Please sign in to comment.