mirror of
https://github.com/transmission/transmission
synced 2025-01-30 19:03:04 +00:00
fix: invalid TR_TORRENT_TRACKERS env var for some torrents (#6434)
This commit is contained in:
parent
5e51fda92e
commit
69577ea4b9
1 changed files with 1 additions and 1 deletions
|
@ -358,7 +358,7 @@ namespace script_helpers
|
||||||
{
|
{
|
||||||
buf << tr_torrentTracker(tor, i).host_and_port;
|
buf << tr_torrentTracker(tor, i).host_and_port;
|
||||||
|
|
||||||
if (++i < n)
|
if (i < n)
|
||||||
{
|
{
|
||||||
buf << ',';
|
buf << ',';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue