Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend/src/services/kms/kms-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,7 @@ export const kmsServiceFactory = ({
const $getBasicEncryptionKey = () => {
const encryptionKey = envConfig.ENCRYPTION_KEY || envConfig.ROOT_ENCRYPTION_KEY;

const isBase64 = !envConfig.ENCRYPTION_KEY;
const isBase64 = !!envConfig.ENCRYPTION_KEY;
Comment thread
yb175 marked this conversation as resolved.
Outdated
if (!encryptionKey)
throw new BadRequestError({
message:
Expand Down