Created
December 4, 2022 22:34
-
-
Save g3rv4/4aefba13e35a9fd16db8d7f6437bb3e0 to your computer and use it in GitHub Desktop.
Mastodon increase toot size to 11k chars
This file contains hidden or 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
index 6a65f44da..6ef45f2f2 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) > 11000 || (isOnlyWhitespace && !anyMedia)); | |
} | |
handleSubmit = (e) => { | |
@@ -277,7 +277,7 @@ class ComposeForm extends ImmutablePureComponent { | |
</div> | |
<div className='character-counter__wrapper'> | |
- <CharacterCounter max={500} text={this.getFulltextForCharacterCounting()} /> | |
+ <CharacterCounter max={11000} text={this.getFulltextForCharacterCounting()} /> | |
</div> | |
</div> | |
diff --git a/app/serializers/rest/instance_serializer.rb b/app/serializers/rest/instance_serializer.rb | |
index 5ae1099d0..bd3cf34e5 100644 | |
--- a/app/serializers/rest/instance_serializer.rb | |
+++ b/app/serializers/rest/instance_serializer.rb | |
@@ -11,7 +11,7 @@ class REST::InstanceSerializer < ActiveModel::Serializer | |
attributes :domain, :title, :version, :source_url, :description, | |
:usage, :thumbnail, :languages, :configuration, | |
- :registrations | |
+ :registrations, :max_toot_chars | |
has_one :contact, serializer: ContactSerializer | |
has_many :rules, serializer: REST::RuleSerializer | |
@@ -87,6 +87,10 @@ class REST::InstanceSerializer < ActiveModel::Serializer | |
} | |
end | |
+ def max_toot_chars | |
+ 11000 | |
+ end | |
+ | |
private | |
def registrations_enabled? | |
diff --git a/app/validators/status_length_validator.rb b/app/validators/status_length_validator.rb | |
index e107912b7..08afe64d9 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 = 11000 | |
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