Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR relates to issue #10
Essentially with the current version of the plugin, if you view the page for a single tweet then nothing is collected (not the tweet being viewed or any of the replies). This PR fixes that by collecting data from the
TweetDetail
endpoint. The code for checking a normal tweet object has been pulled out into a function so we can use it under multiple conditions (relating to the different API endpoints and their structures) which avoids code duplication but does make more changes to the code than I originally intended.