mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 22:18:05 -06:00
Minor refactor on WebUI download page
This commit is contained in:
@@ -142,9 +142,8 @@
|
||||
|
||||
const encodedUrls = new URI().getData('urls');
|
||||
if (encodedUrls) {
|
||||
const urls = [];
|
||||
encodedUrls.split('|').each(function(url) {
|
||||
urls.push(decodeURIComponent(url));
|
||||
const urls = encodedUrls.split('|').map(function(url) {
|
||||
return decodeURIComponent(url);
|
||||
});
|
||||
|
||||
if (urls.length)
|
||||
|
||||
Reference in New Issue
Block a user