Remove trailing commas in config that would cause uploads to hang

This commit is contained in:
Emi Simpson 2022-11-28 16:15:12 -05:00
parent dd7f7eff38
commit 017e636b31
No known key found for this signature in database
GPG Key ID: 45E9C6E81BD86E7C
1 changed files with 2 additions and 2 deletions

View File

@ -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-"
#################################################################################