gearheads
/
mastodon
Archived
2
0
Fork 0

Gearheads: bump post limit to 2500 (more than Twitter Blue!)

gh/stable
Ducky 2023-05-17 22:41:14 +01:00
parent effb4fd148
commit da2fba4389
2 changed files with 3 additions and 3 deletions

View File

@ -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) > 2500 || (isOnlyWhitespace && !anyMedia));
};
handleSubmit = (e) => {
@ -280,7 +280,7 @@ class ComposeForm extends ImmutablePureComponent {
</div>
<div className='character-counter__wrapper'>
<CharacterCounter max={500} text={this.getFulltextForCharacterCounting()} />
<CharacterCounter max={2500} text={this.getFulltextForCharacterCounting()} />
</div>
</div>

View File

@ -1,7 +1,7 @@
# frozen_string_literal: true
class StatusLengthValidator < ActiveModel::Validator
MAX_CHARS = 500
MAX_CHARS = 2500
URL_PLACEHOLDER_CHARS = 23
URL_PLACEHOLDER = 'x' * 23