1
0
Fork 0
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:
Charles Kerr 2023-12-24 14:21:56 -06:00 committed by GitHub
parent 5e51fda92e
commit 69577ea4b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -358,7 +358,7 @@ namespace script_helpers
{
buf << tr_torrentTracker(tor, i).host_and_port;
if (++i < n)
if (i < n)
{
buf << ',';
}