mirror of
https://github.com/discourse/discourse.git
synced 2025-06-02 16:29:32 +08:00
Bad merge. Oddly not caught by autospec.
This commit is contained in:
@ -53,7 +53,7 @@ class TextSentinel
|
|||||||
|
|
||||||
def seems_unpretentious?
|
def seems_unpretentious?
|
||||||
# Don't allow super long words if there is a word length maximum
|
# Don't allow super long words if there is a word length maximum
|
||||||
@opts[:max_word_length].blank? || (@text.split(/\W/).map(&:size).max <= @opts[:max_word_length])
|
@opts[:max_word_length].blank? || @text.split(/\s/).map(&:size).max <= @opts[:max_word_length]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user