Browse Source

Remove unnecessary URL encoding

Fix #14635.
adaptive-webui-19844
Chocobo1 4 years ago
parent
commit
98e02a8fed
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
  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