mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-28 05:27:15 +03: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:
parent
3301797491
commit
7c8eadfddf
1 changed files with 2 additions and 12 deletions
|
@ -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
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue