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:
Chocobo1 2019-09-15 14:30:58 +08:00
parent 12c127b482
commit f1243871b0
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C

View File

@ -317,7 +317,7 @@ void PropertiesWidget::loadTorrentInfos(BitTorrent::TorrentHandle *const torrent
// URL seeds
loadUrlSeeds();
m_ui->labelCreatedByVal->setText(m_torrent->creator().toHtmlEscaped());
m_ui->labelCreatedByVal->setText(m_torrent->creator());
// List files in torrent
m_propListModel->model()->setupModelData(m_torrent->info());