mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-18 06:28:03 -06:00
Merge pull request #14645 from Chocobo1/links
Remove unnecessary URL encoding
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user