mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-21 05:43:32 -07:00
Merge pull request #14645 from Chocobo1/links
Remove unnecessary URL encoding
This commit is contained in:
commit
f8067aa592
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue