When calculating post length, count all urls as being of the reserved character count, even if they're shorter. (#2404)

Addresses #2399
This commit is contained in:
Levi Bard 2022-03-24 19:52:18 +01:00 committed by GitHub
commit bbd818084d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 5 deletions

View file

@ -716,7 +716,9 @@ class ComposeActivity :
val urlSpans = binding.composeEditField.urls
if (urlSpans != null) {
for (span in urlSpans) {
offset += max(0, span.url.length - charactersReservedPerUrl)
// it's expected that this will be negative
// when the url length is less than the reserved character count
offset += (span.url.length - charactersReservedPerUrl)
}
}
var length = binding.composeEditField.length() - offset