aboutsummaryrefslogtreecommitdiffstats
path: root/_pytest/test_command_reply.py
Commit message (Collapse)AuthorAgeFilesLines
* Format all python files with blackTrygve Aaberge2021-03-201-7/+10
|
* Store ts -> hash mapping in hashed_messagesTrygve Aaberge2020-05-301-1/+1
| | | | | This is so we can show the hash for a thread message when the parent message isn't fetched.
* Reply to parent message if trying to reply to thread messageTrygve Aaberge2020-03-181-0/+25
Opening a thread on a thread message is not possible, so the logical thing to do if a user tries to reply to a thread message is to put the message in the same thread as the message that is replied to. Slack currently has a bug which causes thread messages to be converted to normal messages if you try to reply to them (that is, send a message with thread_ts set to the ts of the thread message), but the message you reply with will end up in the original thread. I filed an issue and they confirmed that it is a bug, and that you should not send messages with thread_ts set to the ts of a thread message. Fixes #751