1
0
mirror of https://github.com/bitwarden/server.git synced 2025-02-27 03:41:30 +01:00

copy update on error

This commit is contained in:
Kyle Spearrin 2017-08-16 15:45:38 -04:00
parent 9f6c2a9cc7
commit 582728a083

View File

@ -551,7 +551,7 @@ namespace Bit.Core.Services
if(!license.CanUse(_globalSettings.Installation.Id))
{
throw new BadRequestException("Invalid license. Make sure your license allows for on-premise " +
"hosting of organizations and that the installation id matches.");
"hosting of organizations and that the installation id matches your current installation.");
}
var plan = StaticStore.Plans.FirstOrDefault(p => p.Type == license.PlanType && !p.Disabled);
@ -658,7 +658,7 @@ namespace Bit.Core.Services
if(!license.CanUse(_globalSettings.Installation.Id))
{
throw new BadRequestException("Invalid license. Make sure your license allows for on-premise " +
"hosting of organizations and that the installation id matches.");
"hosting of organizations and that the installation id matches your current installation.");
}
if(license.Seats.HasValue && (!organization.Seats.HasValue || organization.Seats.Value > license.Seats.Value))