diff --git a/src/Core/Services/Implementations/EventService.cs b/src/Core/Services/Implementations/EventService.cs index 360e35967e..fde9911b1e 100644 --- a/src/Core/Services/Implementations/EventService.cs +++ b/src/Core/Services/Implementations/EventService.cs @@ -57,7 +57,7 @@ namespace Bit.Core.Services public async Task LogCipherEventAsync(Cipher cipher, EventType type) { - if(!cipher.OrganizationId.HasValue || (!_currentContext?.UserId.HasValue ?? true)) + if(!cipher.OrganizationId.HasValue && (!_currentContext?.UserId.HasValue ?? true)) { return; }