If you replace the txn id, replace a string the length of the txn id...

This commit is contained in:
Nicolas Werner 2022-03-05 19:38:13 +01:00
parent df6a5aabb6
commit 12a6da012a
No known key found for this signature in database
GPG Key ID: C8D75E610773F2D9
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ EventStore::EventStore(std::string room_id, QObject *)
size_t index = related_text->content.formatted_body.find(txn_id); size_t index = related_text->content.formatted_body.find(txn_id);
if (index != std::string::npos) { if (index != std::string::npos) {
related_text->content.formatted_body.replace( related_text->content.formatted_body.replace(
index, event_id.length(), event_id); index, txn_id.length(), event_id);
} }
} }