mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-12 16:23:07 -07:00
Remove redundant HTML escaping
The text widget is already set to plaintext and doing HTML escaping will not give us more security but only makes it harder to read.
This commit is contained in:
parent
12c127b482
commit
f1243871b0
1 changed files with 1 additions and 1 deletions
|
@ -317,7 +317,7 @@ void PropertiesWidget::loadTorrentInfos(BitTorrent::TorrentHandle *const torrent
|
||||||
// URL seeds
|
// URL seeds
|
||||||
loadUrlSeeds();
|
loadUrlSeeds();
|
||||||
|
|
||||||
m_ui->labelCreatedByVal->setText(m_torrent->creator().toHtmlEscaped());
|
m_ui->labelCreatedByVal->setText(m_torrent->creator());
|
||||||
|
|
||||||
// List files in torrent
|
// List files in torrent
|
||||||
m_propListModel->model()->setupModelData(m_torrent->info());
|
m_propListModel->model()->setupModelData(m_torrent->info());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue