1
0
mirror of https://github.com/jakeswenson/BitBetter.git synced 2023-10-10 13:36:57 +02:00

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

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