1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-27 15:04:36 +00:00

Remove unnecessary URL encoding

Fix #14635.
This commit is contained in:
Chocobo1 2021-03-28 13:15:47 +08:00
parent 2f28d3c7b6
commit 98e02a8fed
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C

View File

@ -386,7 +386,7 @@
const downloadSearchTorrent = function() {
const urls = [];
searchResultsTable.selectedRowsIds().each(function(rowId) {
urls.push(encodeURIComponent(searchResultsTable.rows.get(rowId).full_data.fileUrl));
urls.push(searchResultsTable.rows.get(rowId).full_data.fileUrl);
});
// only proceed if at least 1 row was selected