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

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);