-
in the list of json "reactions": null |
Beta Was this translation helpful? Give feedback.
Answered by
vrocx28
Dec 12, 2022
Replies: 2 comments 1 reply
-
options={"comments": True, "reactions": True} works for me. |
Beta Was this translation helpful? Give feedback.
1 reply
-
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
vrocx28
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
the problem was in extractors.py line no. 214
if reactions["reactors"] and self.options.get("reactors") != "generator":
changed it with
if reactions.get("reactors") and self.options.get("reactors") != "generator":
works fine now