KonishchevDmitry / social-rss

Allows you to receive updates from your social network accounts via RSS
16 stars 4 forks source link

Fix parsing tweets with hashtags #7

Closed vlevit closed 5 years ago

vlevit commented 5 years ago

hashtags entities have "text" but not "full_text" key. Example:

  "hashtags": [
    {
      "indices": [
        32,
        38
      ],
      "text": "nodejs"
    }
  ]
}

https://developer.twitter.com/en/docs/tweets/data-dictionary/overview/entities-object

I believe the last commit on master unintentionally broke it.

Thank you for the project!

KonishchevDmitry commented 5 years ago

Thanks!