mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-18 14:38:04 -06:00
Revert "WebUI: group trackers by hostname"
This functionality wasn't ever correctly implemented and couldn't be
done without considerable effort, so revert it for now.
This reverts commit 4ac25a50ed.
PR #15542.
This commit is contained in:
@@ -97,15 +97,6 @@ function genHash(string) {
|
||||
return hash;
|
||||
}
|
||||
|
||||
function getTrackerHost(url) {
|
||||
try {
|
||||
return new URL(url).hostname;
|
||||
}
|
||||
catch (error) {
|
||||
return url;
|
||||
}
|
||||
}
|
||||
|
||||
function getSyncMainDataInterval() {
|
||||
return customSyncMainDataInterval ? customSyncMainDataInterval : serverSyncMainDataInterval;
|
||||
}
|
||||
@@ -632,10 +623,9 @@ window.addEvent('load', function() {
|
||||
if (response['trackers']) {
|
||||
for (const tracker in response['trackers']) {
|
||||
const torrents = response['trackers'][tracker];
|
||||
const host = getTrackerHost(tracker);
|
||||
const hash = genHash(host);
|
||||
const hash = genHash(tracker);
|
||||
trackerList.set(hash, {
|
||||
url: host,
|
||||
url: tracker,
|
||||
torrents: torrents
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user