diff --git a/lib/post_revisor.rb b/lib/post_revisor.rb index 527440f76f..4b16797626 100644 --- a/lib/post_revisor.rb +++ b/lib/post_revisor.rb @@ -280,12 +280,9 @@ class PostRevisor end def diff_size(before, after) - changes = 0 - ONPDiff.new(before, after).short_diff.each do |str, type| - next if type == :common - changes += str.length + ONPDiff.new(before, after).short_diff.sum do |str, type| + type == :common ? 0 : str.size end - changes end def ninja_edit?