lor.sh/patches/fix-character-limit.patch

36 lines
1.6 KiB
Diff
Raw Normal View History

diff --git a/app/javascript/mastodon/features/compose/components/compose_form.jsx b/app/javascript/mastodon/features/compose/components/compose_form.jsx
2023-11-20 15:59:28 +00:00
index 9222b2dc8..e2ce71b96 100644
--- a/app/javascript/mastodon/features/compose/components/compose_form.jsx
+++ b/app/javascript/mastodon/features/compose/components/compose_form.jsx
2023-11-20 15:59:28 +00:00
@@ -100,7 +100,7 @@ class ComposeForm extends ImmutablePureComponent {
2023-01-09 13:13:56 +00:00
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) > 100500 || (isOnlyWhitespace && !anyMedia));
2023-02-10 22:20:31 +00:00
};
2023-01-09 13:13:56 +00:00
handleSubmit = (e) => {
2023-11-20 15:59:28 +00:00
@@ -297,7 +297,7 @@ class ComposeForm extends ImmutablePureComponent {
</div>
2023-01-09 13:13:56 +00:00
2023-11-20 15:59:28 +00:00
<div className='character-counter__wrapper'>
- <CharacterCounter max={500} text={this.getFulltextForCharacterCounting()} />
+ <CharacterCounter max={100500} text={this.getFulltextForCharacterCounting()} />
</div>
2023-01-09 13:13:56 +00:00
</div>
</div>
diff --git a/app/validators/status_length_validator.rb b/app/validators/status_length_validator.rb
2023-11-20 15:59:28 +00:00
index dc841ded3..734ab143b 100644
2023-01-09 13:13:56 +00:00
--- 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 = 100500
URL_PLACEHOLDER_CHARS = 23
URL_PLACEHOLDER = 'x' * 23