You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 9, 2022. It is now read-only.
line 374 of getThreadHistory.js could use a similar fix of:
packID: d.sticker.pack.id, to packID: d.sticker.pack != null ? d.sticker.pack.id : '',
otherwise "ERR! getThreadHistoryGraphQL TypeError: Cannot read property 'id' of null" gets thrown when getting a history of several chats.
The edit alleviated the problem at least for me.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
First of all, I'm sorry if this is the incorrect way to report it.
Based on https://github.com/Schmavery/facebook-chat-api/pull/661
I'd recommend making the following change:
line 374 of getThreadHistory.js could use a similar fix of:
packID: d.sticker.pack.id, to packID: d.sticker.pack != null ? d.sticker.pack.id : '',
otherwise "ERR! getThreadHistoryGraphQL TypeError: Cannot read property 'id' of null" gets thrown when getting a history of several chats.
The edit alleviated the problem at least for me.
The text was updated successfully, but these errors were encountered: