Skip to content
Snippets Groups Projects
Unverified Commit e88ab89c authored by Nicolas Werner's avatar Nicolas Werner Committed by GitHub
Browse files

Merge pull request #722 from Thulinma/noHtmlFixes

Fix two more HTML injection attacks.
parents 7bb1b1c6 45b5629f
No related branches found
No related tags found
No related merge requests found
Pipeline #1777 passed
...@@ -77,7 +77,7 @@ RoomsModel::data(const QModelIndex &index, int role) const ...@@ -77,7 +77,7 @@ RoomsModel::data(const QModelIndex &index, int role) const
return QString::fromStdString( return QString::fromStdString(
roomInfos.at(roomids[index.row()]).avatar_url); roomInfos.at(roomids[index.row()]).avatar_url);
case Roles::RoomID: case Roles::RoomID:
return roomids[index.row()]; return roomids[index.row()].toHtmlEscaped();
} }
} }
return {}; return {};
......
...@@ -16,8 +16,8 @@ struct Reaction ...@@ -16,8 +16,8 @@ struct Reaction
Q_PROPERTY(int count READ count) Q_PROPERTY(int count READ count)
public: public:
QString key() const { return key_; } QString key() const { return key_.toHtmlEscaped(); }
QString users() const { return users_; } QString users() const { return users_.toHtmlEscaped(); }
QString selfReactedEvent() const { return selfReactedEvent_; } QString selfReactedEvent() const { return selfReactedEvent_; }
int count() const { return count_; } int count() const { return count_; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment