From d0acf32b7f2531a4446702d54ddcfcf68d388e9e Mon Sep 17 00:00:00 2001 From: ClaraCrazy Date: Mon, 21 Oct 2024 02:01:18 +0200 Subject: [PATCH] Fix naming --- application/config.sample.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/config.sample.js b/application/config.sample.js index 1813e0e..a1c2f2c 100644 --- a/application/config.sample.js +++ b/application/config.sample.js @@ -23,7 +23,7 @@ const config = { http: { // HTTP configuration port: normalizePort(process.env.HTTP_PORT || 3000), // http port to listen on branding: process.env.HTTP_BRANDING || ["48hr.email", "CrazyCo", "https://crazyco.xyz"], // branding - displaySort: process.env.HTTP_DISPLAY_SHUFFLE || 0, // Sorting logic used for display (0 does not modify, 1 sorts alphabetically, 2 sorts alphabetically and only shuffles the first item, 3 shuffles all) + displaySort: process.env.HTTP_DISPLAY_SORT || 0, // Sorting logic used for display (0 does not modify, 1 sorts alphabetically, 2 sorts alphabetically and only shuffles the first item, 3 shuffles all) }, }