summary refs log tree commit diff
path: root/src/timeline/InputBar.cpp
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2024-05-31 18:17:35 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2024-05-31 18:28:16 +0200
commitec9af40fc50142f32924efd9235ca5912b6fe395 (patch)
treef81bba9db7cff61d5f967d7ded1fb192108de3e9 /src/timeline/InputBar.cpp
parentDisable image loaded workaround for Qt 6.7 and up (diff)
downloadnheko-ec9af40fc50142f32924efd9235ca5912b6fe395.tar.xz
fix mentions with markdown and in edits
Diffstat (limited to 'src/timeline/InputBar.cpp')
-rw-r--r--src/timeline/InputBar.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/timeline/InputBar.cpp b/src/timeline/InputBar.cpp

index ac1d47a2..2d15d01a 100644 --- a/src/timeline/InputBar.cpp +++ b/src/timeline/InputBar.cpp
@@ -462,8 +462,7 @@ replaceMatrixToMarkdownLink(QString input) int newline = input.indexOf('\n', endOfName); if (endOfLink > endOfName && (newline == -1 || endOfLink < newline)) { auto name = input.mid(startOfName + 1, endOfName - startOfName - 1); - name.replace("\\[", "["); - name.replace("\\]", "]"); + name.remove(QChar(u'\\'), Qt::CaseSensitive); input.replace(startOfName, endOfLink - startOfName + 1, name); replaced = true; } @@ -522,6 +521,7 @@ InputBar::generateMentions() // this->containsAtRoom_ = false; // this->mentions_.clear(); // this->mentionTexts_.clear(); + return mention; }