Skip to content

Commit d5eb263

Browse files
committed
disable WordCountAnalyzer again
1 parent 7b8ccb8 commit d5eb263

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/models/documents/document.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def computed_word_count
103103

104104
# Settings: https://github.com/diasks2/word_count_analyzer
105105
# TODO: move this into analysis services & call that here
106-
if self.body.length <= 10_000
106+
if false && self.body.length <= 10_000
107107
WordCountAnalyzer::Counter.new(
108108
ellipsis: 'no_special_treatment',
109109
hyperlink: 'count_as_one',

0 commit comments

Comments
 (0)