Skip to content

Commit

Permalink
Merge pull request #299 from shoelsch/stevenh/commuter-298
Browse files Browse the repository at this point in the history
Change default value for COMMUTER_S3_ENDPOINT from empty string to null
  • Loading branch information
captainsafia authored Jul 14, 2020
2 parents c03d5bb + 3ba2025 commit 391a5d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function populateS3Options(env): Object {
.replace(/\/+$/, "");

const s3Endpoint =
env.COMMUTER_S3_ENDPOINT || "";
env.COMMUTER_S3_ENDPOINT || null;

// only interpret "true" as true otherwise false
const s3ForcePathStyle = /^true$/i.test(
Expand Down

0 comments on commit 391a5d8

Please sign in to comment.