Browse Source

Merge pull request #14645 from Chocobo1/links

Remove unnecessary URL encoding
adaptive-webui-19844
Chocobo1 4 years ago committed by GitHub
parent
commit
f8067aa592
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/webui/www/private/views/search.html

2
src/webui/www/private/views/search.html

@ -386,7 +386,7 @@ @@ -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

Loading…
Cancel
Save