fork of indigo with slightly nicer lexgen

fixup build after lex updates

Changed files
+3 -3
cmd
gosky
fakedata
testing
+1 -1
cmd/gosky/bsky.go
··· 335 335 return err 336 336 } 337 337 338 - notifs, err := appbsky.NotificationListNotifications(ctx, xrpcc, "", 50, false, "") 338 + notifs, err := appbsky.NotificationListNotifications(ctx, xrpcc, "", 50, false, nil, "") 339 339 if err != nil { 340 340 return err 341 341 }
+1 -1
fakedata/generators.go
··· 390 390 func BrowseAccount(xrpcc *xrpc.Client, acc *AccountContext) error { 391 391 // fetch notifications 392 392 maxNotif := 50 393 - resp, err := appbsky.NotificationListNotifications(context.TODO(), xrpcc, "", int64(maxNotif), false, "") 393 + resp, err := appbsky.NotificationListNotifications(context.TODO(), xrpcc, "", int64(maxNotif), false, nil, "") 394 394 if err != nil { 395 395 return err 396 396 }
+1 -1
testing/utils.go
··· 471 471 t.Helper() 472 472 473 473 ctx := context.TODO() 474 - resp, err := bsky.NotificationListNotifications(ctx, u.client, "", 100, false, "") 474 + resp, err := bsky.NotificationListNotifications(ctx, u.client, "", 100, false, nil, "") 475 475 if err != nil { 476 476 t.Fatal(err) 477 477 }