fix integer type (#110)

fix integer type for GenerateOrgLicense's "Seats" value
This commit is contained in:
captainhook 2021-08-09 17:10:49 +01:00 committed by GitHub
parent 21bffcf262
commit a17681e82b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -404,7 +404,7 @@ namespace bitwardenSelfLicensor
set("Enabled", true);
set("Plan", "Custom");
set("PlanType", (byte)6);
set("Seats", (short)32767);
set("Seats", (int)32767);
set("MaxCollections", short.MaxValue);
set("UsePolicies", true);
set("UseSso", true);