From 516f9fb951363e912617bfbae3c0b39292e7f901 Mon Sep 17 00:00:00 2001 From: "R. Miles McCain" Date: Mon, 29 Mar 2021 14:37:08 +0000 Subject: [PATCH] Fix aggressive hash salting --- shynet/shynet/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shynet/shynet/settings.py b/shynet/shynet/settings.py index 9d12950..45e8b7f 100644 --- a/shynet/shynet/settings.py +++ b/shynet/shynet/settings.py @@ -332,4 +332,4 @@ SHOW_THIRD_PARTY_ICONS = os.getenv("SHOW_THIRD_PARTY_ICONS", "True") == "True" BLOCK_ALL_IPS = os.getenv("BLOCK_ALL_IPS", "False") == "True" # Include date and service ID in salt? -AGGRESSIVE_HASH_SALTING = os.getenv("AGGRESSIVE_HASH_SALTING", "False") == True +AGGRESSIVE_HASH_SALTING = os.getenv("AGGRESSIVE_HASH_SALTING", "False") == "True"