cinnyapp / cinny

Yet another matrix client
https://cinny.in
GNU Affero General Public License v3.0
1.87k stars 242 forks source link

Feature: Thread support fallback #191

Closed notramo closed 2 years ago

notramo commented 2 years ago

Thread messages are structurally similar to replies, and can be displayed using the reply rendering solution (maybe with some icon to indicate it's a thread) to the previous thread messages until proper support is added.

Replies:

"m.relates_to": {
    "m.in_reply_to": {
        "event_id": "aaaaaaabbbbbbbcccccccccddddddd"
    }
}

Thread messages:

"m.relates_to": {
    "event_id": "ddddddddddeeeeeeeeefffffffffffgggggggg",
    "rel_type": "io.element.thread"
}

Fallback solution in MSC3440

notramo commented 2 years ago

This MSC changed since I opened this issue, and the desired fallback effect can be produced without adding any support in Cinny, so I close this issue.