Fix a few more HTML injections
This commit is contained in:
parent
7bb1b1c650
commit
45b5629fe4
@ -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
|
|||||||
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_; }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user