1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-08 06:28:14 -05: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 true;
} }
return _currentContext.InstallationId.HasValue && _globalSettings.SelfHosted; return _currentContext.InstallationId.HasValue && !_globalSettings.SelfHosted;
} }
} }
} }