1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-23 12:25:16 +01:00

push controller is only when *not* self hosted

This commit is contained in:
Kyle Spearrin 2017-09-18 21:07:56 -04:00
parent cb9f3d00d4
commit 327e192258

View File

@ -111,7 +111,7 @@ namespace Bit.Api.Controllers
return true;
}
return _currentContext.InstallationId.HasValue && _globalSettings.SelfHosted;
return _currentContext.InstallationId.HasValue && !_globalSettings.SelfHosted;
}
}
}