view config/initializers/ext_twitter_tweet.rb @ 237:961d362e42c7 legit-client

The url in entity media isn't unique as they all point to the same thing
author nanaya <me@nanaya.net>
date Sat, 15 Jul 2023 01:47:34 +0900
parents d35dbc09bd83
children
line wrap: on
line source

class Twitter::Tweet
  def full_text_extended
    attrs[:full_text].printable
  end
  memoize :full_text_extended

  def unescaped_text
    CGI.unescapeHTML full_text_extended
  end
  memoize :unescaped_text
end