Skip to content

Commit

Permalink
Boost post length maximum.
Browse files Browse the repository at this point in the history
  • Loading branch information
zorbathut committed Apr 1, 2024
1 parent 5ab013f commit 4fc50e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/helpers/config/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def enable_services(self) -> bool:
SUBMISSION_FLAIR_LENGTH_MAXIMUM: Final[int] = 350
SUBMISSION_TITLE_LENGTH_MAXIMUM: Final[int] = 500
SUBMISSION_URL_LENGTH_MAXIMUM: Final[int] = 2048
SUBMISSION_BODY_LENGTH_MAXIMUM: Final[int] = 20000
SUBMISSION_BODY_LENGTH_MAXIMUM: Final[int] = 500000 # these are filtered anyway
COMMENT_BODY_LENGTH_MAXIMUM: Final[int] = 500000
COMMENT_BODY_LENGTH_MAXIMUM_UNFILTERED: Final[int] = 50000
MESSAGE_BODY_LENGTH_MAXIMUM: Final[int] = 10000
Expand Down

0 comments on commit 4fc50e1

Please sign in to comment.