aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2016-10-04 19:34:35 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2016-10-04 19:34:35 +0900
commitf112ce9b54d57c84fde2f858833b497a3c71984b (patch)
tree6895e88a62ba839bef59f918ec7d3a9de238b591
parent50a92291b0650747c931259976a488c37504024a (diff)
downloadlibquotient-f112ce9b54d57c84fde2f858833b497a3c71984b.tar.gz
libquotient-f112ce9b54d57c84fde2f858833b497a3c71984b.zip
Changed angle brackets to parentheses for user disambiguation
This fixes a case when another person mentions you by disambiguated name, and this is not highlighted because Riot uses () and Quaternion uses <> to decorate disambiguated names (as well as to check mentions).
-rw-r--r--room.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/room.cpp b/room.cpp
index b5e6a906..e559bc37 100644
--- a/room.cpp
+++ b/room.cpp
@@ -321,7 +321,7 @@ QString Room::roomMembername(User *u) const
}
// In case of more than one namesake, disambiguate with user id.
- return username % " <" % u->id() % ">";
+ return username % " (" % u->id() % ")";
}
QString Room::roomMembername(QString userId) const