Last active
November 6, 2022 10:40
-
-
Save Exagone313/ea7e71400cd8b33d0d05de848ab24db7 to your computer and use it in GitHub Desktop.
Mastodon 2048 character limit patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/app/javascript/mastodon/features/compose/components/compose_form.js b/app/javascript/mastodon/features/compose/components/compose_form.js | |
index 4620d1c43..3028bb684 100644 | |
--- a/app/javascript/mastodon/features/compose/components/compose_form.js | |
+++ b/app/javascript/mastodon/features/compose/components/compose_form.js | |
@@ -90,7 +90,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) > 2048 || (isOnlyWhitespace && !anyMedia)); | |
} | |
handleSubmit = () => { | |
@@ -273,7 +273,7 @@ class ComposeForm extends ImmutablePureComponent { | |
</div> | |
<div className='character-counter__wrapper'> | |
- <CharacterCounter max={500} text={this.getFulltextForCharacterCounting()} /> | |
+ <CharacterCounter max={2048} text={this.getFulltextForCharacterCounting()} /> | |
</div> | |
</div> | |
diff --git a/app/validators/status_length_validator.rb b/app/validators/status_length_validator.rb | |
index e107912b7..6bb5beb86 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 = 2048 | |
URL_PLACEHOLDER_CHARS = 23 | |
URL_PLACEHOLDER = 'x' * 23 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment