From 017e636b314cc95125e7b42ade4aa6713f9896f8 Mon Sep 17 00:00:00 2001 From: Emi Simpson Date: Mon, 28 Nov 2022 16:15:12 -0500 Subject: [PATCH] Remove trailing commas in config that would cause uploads to hang --- instance/config.example.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/instance/config.example.py b/instance/config.example.py index 742ce7d..cd78dde 100644 --- a/instance/config.example.py +++ b/instance/config.example.py @@ -144,14 +144,14 @@ NSFW_DETECT = False # are marked as NSFW. # # If NSFW_DETECT is set to False, then this has no effect. -NSFW_THRESHOLD = 0.608, +NSFW_THRESHOLD = 0.608 # A list of all characters which can appear in a URL # # If this list is too short, then URLs can very quickly become long. # Generally, the default value for this should work for basically all usecases. -URL_ALPHABET = "DEQhd2uFteibPwq0SWBInTpA_jcZL5GKz3YCR14Ulk87Jors9vNHgfaOmMXy6Vx-", +URL_ALPHABET = "DEQhd2uFteibPwq0SWBInTpA_jcZL5GKz3YCR14Ulk87Jors9vNHgfaOmMXy6Vx-" #################################################################################