Skip to content

Commit

Permalink
fix(sync-seat-null): Seats value can be null
Browse files Browse the repository at this point in the history
  • Loading branch information
Lowaiz committed Aug 12, 2024
1 parent 73e46c0 commit 94c59cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vaultwarden/models/sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class ProfileOrganization(PermissiveBaseModel):
ProviderId: str | None = None
ProviderName: str | None = None
ResetPasswordEnrolled: bool
Seats: int
Seats: int | None = None
SelfHost: bool
SsoBound: bool
Status: int
Expand Down

0 comments on commit 94c59cf

Please sign in to comment.