Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Commit efcc6eb

Browse files
authored
Update default.js
Fixing boolean check
1 parent 6c2412e commit efcc6eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/default.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,5 +76,5 @@ module.exports = {
7676

7777
// V5 Term UUID
7878
SYNC_V5_TERM_UUID: process.env.SYNC_V5_TERM_UUID || '317cd8f9-d66c-4f2a-8774-63c612d99cd4',
79-
SYNC_V5_WRITE_ENABLED: process.env.SYNC_V5_WRITE_ENABLED || false
79+
SYNC_V5_WRITE_ENABLED: process.env.SYNC_V5_WRITE_ENABLED === 'true' || false
8080
}

0 commit comments

Comments
 (0)