1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-02-05 03:14:44 +00:00

Merge pull request #14645 from Chocobo1/links

Remove unnecessary URL encoding
This commit is contained in:
Chocobo1 2021-03-31 11:16:45 +08:00 committed by GitHub
commit f8067aa592
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -386,7 +386,7 @@
const downloadSearchTorrent = function() { const downloadSearchTorrent = function() {
const urls = []; const urls = [];
searchResultsTable.selectedRowsIds().each(function(rowId) { 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 // only proceed if at least 1 row was selected