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 56b62e6573
commit 55180e3598

View File

@@ -333,7 +333,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());