gemoji-parser icon indicating copy to clipboard operation
gemoji-parser copied to clipboard

emoji_detokenize break on NilClass

Open deneuxa opened this issue 6 years ago • 0 comments

if you call emoji_detokenize on a nil attribute, it will break.

For now I overload the NilClass as this :

class NilClass
  def emoji_detokenize
    nil
  end
end

but it could be done directly in the gem 😄

deneuxa avatar Oct 05 '18 10:10 deneuxa