Closed samuelchristlie closed 1 year ago
Removing linkifiedText fixes #81. I'm not sure what it does or if it's required at all, since it's not used in any other part of the code. Performing a network analysis on Poe gives the following request JSON, which has no mention of linkifiedText:
linkifiedText
{"queryName":"stopMessage_messageCancel_Mutation","variables":{"messageId":xxx,"textLength":xxx},"extensions":{"hash":"xxx"}}
Removing linkifiedTextLength from line 900 in api.py fixes my problem
linkifiedTextLength
api.py
variables = {"messageId": chunk["messageId"], "textLength": len(chunk["text"]), "linkifiedTextLength": len(chunk["linkifiedText"])}
Theres a syntax error with the spare ")" at the end.
Removing
linkifiedText
fixes #81. I'm not sure what it does or if it's required at all, since it's not used in any other part of the code. Performing a network analysis on Poe gives the following request JSON, which has no mention oflinkifiedText
:Removing
linkifiedTextLength
from line 900 inapi.py
fixes my problem