From d63f7717879e60ad63fd6e2fc60f7b159a895f37 Mon Sep 17 00:00:00 2001 From: Falko Zurell Date: Tue, 5 Dec 2023 16:32:01 +0100 Subject: [PATCH] patch for 4.2.3 Signed-off-by: Falko Zurell --- ...ase-character-limit-from-500-to-5000.patch | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 character-limit-patch.patch/v4.2.3-increase-character-limit-from-500-to-5000.patch diff --git a/character-limit-patch.patch/v4.2.3-increase-character-limit-from-500-to-5000.patch b/character-limit-patch.patch/v4.2.3-increase-character-limit-from-500-to-5000.patch new file mode 100644 index 0000000..9e9103f --- /dev/null +++ b/character-limit-patch.patch/v4.2.3-increase-character-limit-from-500-to-5000.patch @@ -0,0 +1,48 @@ +From 1d7ac665608f78c497d346c0a2e5909d1e83e753 Mon Sep 17 00:00:00 2001 +From: Falko Zurell +Date: Tue, 10 Oct 2023 19:41:59 +0200 +Subject: [PATCH] apply 5000 char limit patch to 4.2.1 + +--- + .../mastodon/features/compose/components/compose_form.jsx | 4 ++-- + app/validators/status_length_validator.rb | 2 +- + 2 files changed, 3 insertions(+), 3 deletions(-) + +diff --git a/app/javascript/mastodon/features/compose/components/compose_form.jsx b/app/javascript/mastodon/features/compose/components/compose_form.jsx +index 9222b2dc8..962310a28 100644 +--- a/app/javascript/mastodon/features/compose/components/compose_form.jsx ++++ b/app/javascript/mastodon/features/compose/components/compose_form.jsx +@@ -100,7 +100,7 @@ class ComposeForm extends ImmutablePureComponent { + const fulltext = this.getFulltextForCharacterCounting(); + const isOnlyWhitespace = fulltext.length !== 0 && fulltext.trim().length === 0; + +- return !(isSubmitting || isUploading || isChangingUpload || length(fulltext) > 500 || (isOnlyWhitespace && !anyMedia)); ++ return !(isSubmitting || isUploading || isChangingUpload || length(fulltext) > 5000 || (isOnlyWhitespace && !anyMedia)); + }; + + handleSubmit = (e) => { +@@ -297,7 +297,7 @@ class ComposeForm extends ImmutablePureComponent { + + +
+- ++ +
+ + +diff --git a/app/validators/status_length_validator.rb b/app/validators/status_length_validator.rb +index dc841ded3..9cb1ec94b 100644 +--- a/app/validators/status_length_validator.rb ++++ b/app/validators/status_length_validator.rb +@@ -1,7 +1,7 @@ + # frozen_string_literal: true + + class StatusLengthValidator < ActiveModel::Validator +- MAX_CHARS = 500 ++ MAX_CHARS = 5000 + URL_PLACEHOLDER_CHARS = 23 + URL_PLACEHOLDER = 'x' * 23 + +-- +2.39.3 (Apple Git-145) +