mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-22 00:17:23 -06:00
Merge pull request #15549 from Chocobo1/api
WebAPI: Use specific number to represent non-existing values
This commit is contained in:
@@ -97,7 +97,7 @@ window.qBittorrent.PropTrackers = (function() {
|
||||
|
||||
const row = {
|
||||
rowId: tracker.url,
|
||||
tier: tracker.tier,
|
||||
tier: (tracker.tier >= 0) ? tracker.tier : "",
|
||||
url: tracker.url,
|
||||
status: status,
|
||||
peers: tracker.num_peers,
|
||||
|
||||
Reference in New Issue
Block a user