Ver a proveniência

Trap nil object instead of string in title/description cleanup filter #2

master
Adrian Short há 12 anos
ascendente
cometimento
50c0b78fa0
1 ficheiros alterados com 4 adições e 0 eliminações
  1. +4
    -0
      app/helpers/posts_helper.rb

+ 4
- 0
app/helpers/posts_helper.rb Ver ficheiro

@@ -33,6 +33,10 @@ module PostsHelper
end
def clean_description(s)
if s.nil?
return ""
end
if s.size > 137
s = s[0..136] + '...'
end


Carregando…
Cancelar
Guardar