gemoji-parser
gemoji-parser copied to clipboard
emoji_detokenize break on NilClass
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 😄